import { FromSchema } from 'json-schema-to-ts';
export declare const dateSchema: {
    readonly $id: "#/components/schemas/dateSchema";
    readonly oneOf: readonly [{
        readonly type: "string";
        readonly format: "date-time";
    }, {
        readonly type: "number";
    }];
    readonly components: {};
};
export declare type DateSchema = FromSchema<typeof dateSchema>;
