import type { SnapshotDiff } from '@directus/types';
export declare function filterSnapshotDiff(snapshot: SnapshotDiff, filters: string[]): SnapshotDiff;
export declare function apply(snapshotPath: string, options?: {
    yes: boolean;
    dryRun: boolean;
    ignoreRules: string;
}): Promise<void>;
export declare function formatPath(path: any[]): string;
export declare function formatRelatedCollection(relatedCollection: string | null): string;
