export type ArrayRowToInsert = { arrays: { [tableName: string]: ArrayRowToInsert[]; }; locales: { [locale: string]: Record; }; row: Record; }; export type BlockRowToInsert = { arrays: { [tableName: string]: ArrayRowToInsert[]; }; locales: { [locale: string]: Record; }; row: Record; }; export type RelationshipToDelete = { locale?: string; path: string; }; export type RowToInsert = { arrays: { [tableName: string]: ArrayRowToInsert[]; }; blocks: { [blockType: string]: BlockRowToInsert[]; }; blocksToDelete: Set; locales: { [locale: string]: Record; }; numbers: Record[]; relationships: Record[]; relationshipsToDelete: RelationshipToDelete[]; row: Record; selects: { [tableName: string]: Record[]; }; texts: Record[]; }; //# sourceMappingURL=types.d.ts.map