export interface ParseObject { objectId: string; createdAt: string; updatedAt: string; className: string; __type: string; } export type WithoutParseKeys = Omit; export declare const sanitizeParseObject: (obj: T) => WithoutParseKeys;