import * as z from './base'; export interface ZodDateDef extends z.ZodTypeDef { t: z.ZodTypes.date; } export declare class ZodDate extends z.ZodType { toJSON: () => ZodDateDef; static create: () => ZodDate; }