import type { Sql } from "./quote";
/**
 * Runs pg_dump, does some basic parsing and returns the result.
 */
export declare function getDump({ fromDsn, schema, }: {
    fromDsn: string;
    schema: string;
}): Promise<{
    preData: Sql;
    primaryKeys: string[];
    postData: Sql;
}>;
//# sourceMappingURL=getDump.d.ts.map