import type * as zod from "zod";
import { ZodAccelerator } from "../accelerator";
import type { ZodAcceleratorContent } from "../content";
export declare class ZodDateAccelerator extends ZodAccelerator {
    get support(): typeof zod.ZodDate;
    makeAcceleratorContent(zodSchema: zod.ZodDate, zac: ZodAcceleratorContent): ZodAcceleratorContent;
    static contentPart: {
        coerce: () => string;
        typeof: () => {
            if: string;
            message: string;
        };
        min: ({ value }: {
            value: number;
        }) => {
            if: string;
            message: string;
        };
        max: ({ value }: {
            value: number;
        }) => {
            if: string;
            message: string;
        };
    };
}
