import type { SchemaOverview, Snapshot, SnapshotDiff, SnapshotField } from '@directus/types';
import type { Diff } from 'deep-diff';
import type { Knex } from 'knex';
export declare function applyDiff(currentSnapshot: Snapshot, snapshotDiff: SnapshotDiff, options?: {
    database?: Knex;
    schema?: SchemaOverview;
}): Promise<void>;
export declare function isNestedMetaUpdate(diff: Diff<SnapshotField | undefined>): boolean;
