import type * as zod from "zod";
import { ZodAccelerator } from "../accelerator";
import type { ZodAcceleratorContent } from "../content";
export declare class ZodObjectAccelerator extends ZodAccelerator {
    get support(): typeof zod.ZodObject;
    makeAcceleratorContent(zodSchema: zod.ZodObject<Record<keyof any, any>>, zac: ZodAcceleratorContent): ZodAcceleratorContent;
    static contentPart: {
        typeof: () => {
            if: string;
            message: string;
        };
        strict: () => string;
        passthrough: () => string;
    };
}
