export type Serializable = any;
/**
 * data serialized as json
 */
export type SerialJSON = string & {
    _json: undefined;
};
export declare const isSerialJSON: import("type-fns").AssessWithAssure<string, SerialJSON>;
export declare const asSerialJSON: (input: Serializable) => SerialJSON;
export declare const deSerialJSON: <T>(input: SerialJSON) => T;
