import OrmRecord from './record.js'; interface CreateRecordOptions { isDbRecord?: boolean; serialize?: boolean; transform?: boolean; update?: boolean; [key: string]: unknown; } export declare function createRecord(modelName: string, rawData?: { [key: string]: unknown; }, userOptions?: CreateRecordOptions): OrmRecord; export declare function updateRecord(record: OrmRecord, rawData: unknown, userOptions?: CreateRecordOptions): void; export {};