import { FileFormat, FilePath } from "./utils/file.js"; export type Opts = { database: string | undefined; catalog: string | undefined; schema: string | undefined; entity: string | undefined; bucket: string | undefined; sampleSize: number; mixedJson: string | undefined; inferJsonAttributes: boolean; inferPolymorphicRelations: boolean; inferRelations: boolean; ignoreErrors: boolean; logQueries: boolean; format: FileFormat; output: FilePath | undefined; }; export declare function exportDbSchema(url: string, opts: Opts): Promise; //# sourceMappingURL=export.d.ts.map