import type { Field } from 'mzinga/types'; import type { PostgresAdapter } from '../../types'; import type { RowToInsert } from './types'; type Args = { adapter: PostgresAdapter; data: Record; fields: Field[]; path?: string; tableName: string; }; export declare const transformForWrite: ({ adapter, data, fields, path, tableName, }: Args) => RowToInsert; export {}; //# sourceMappingURL=index.d.ts.map