import { PgTestClient } from '../test-client'; import { SeedAdapter } from './types'; interface CsvSeedMap { [tableName: string]: string; } export declare function csv(tables: CsvSeedMap): SeedAdapter; export declare function copyCsvIntoTable(pg: PgTestClient, table: string, filePath: string): Promise; export declare function exportTableToCsv(pg: PgTestClient, table: string, filePath: string): Promise; export {};