export type SerializedJSONWithCustomFields = { serializedString: string; customDateUsed: boolean; customFileUsed: boolean; mapUsed: boolean; setUsed: boolean; }; export declare const DATE_TOKEN = "remotion-date:"; export declare const FILE_TOKEN = "remotion-file:"; export declare const serializeJSONWithSpecialTypes: ({ data, indent, staticBase, }: { data: Record; indent: number | undefined; staticBase: string | null; }) => SerializedJSONWithCustomFields; export declare const deserializeJSONWithSpecialTypes: >(data: string) => T; export declare const serializeThenDeserialize: (props: Record) => Record; export declare const serializeThenDeserializeInStudio: (props: Record) => Record;