export type ExportFile = {
    fileName: string;
    mime: string;
    base64: string;
};
export declare function exportRows(moduleName: string, rows: Record<string, unknown>[], format?: string): ExportFile;
export declare function parseImportRows(fileName: string, content: string): Record<string, string>[];
export declare function normalizeImportRow(row: Record<string, string>): Record<string, string>;
export declare function toCsv(rows: Record<string, unknown>[]): string;
