export declare const deserialize: <T>(data: string | null) => T;
export declare const serialize: <T>(data: T) => string;
