export declare type nullableString = string | null;
export declare type nullableDate = Date | null;
export interface IKnownType {
    getType(): string;
}
export declare function dateFromJson(json: any): Date | null;
export declare function dateToJson(date: Date): {
    _type: string;
    value: string;
};
