export declare function stringifyIfDate(date: Date | T): string | T; type StringifyDates> = { [K in keyof T]: T[K] extends Date ? string : T[K]; }; export declare function stringifyDateValues>(obj: T): StringifyDates; /** * Extracts keys from a details object where the value is null. * Used for identifying which fields should be explicitly set to null in native updates. */ export declare function getNullableDetailsFields>(details: Partial): (keyof T)[]; export {}; //# sourceMappingURL=utils.d.ts.map