/** * Cross-dialect insert with returning. * PostgreSQL and SQLite support .returning(), MySQL does not. * All dialects generate UUID client-side for predictability. */ export declare function insertReturning(db: any, table: any, values: Record): Promise; /** * Cross-dialect update with returning. */ export declare function updateReturning(db: any, table: any, where: any, values: Record): Promise; //# sourceMappingURL=helpers.d.ts.map