import type { SchemaOverview, Snapshot } from '@directus/types';
import type { Knex } from 'knex';
export declare function getSnapshot(options?: {
    database?: Knex;
    schema?: SchemaOverview;
}): Promise<Snapshot>;
