import { z } from 'zod';
/**
 * @internal
 **/
export declare const functionObjectSchema: z.ZodObject<{
    description: z.ZodOptional<z.ZodString>;
    name: z.ZodString;
    parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
    strict: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
}, "strip", z.ZodTypeAny, {
    name: string;
    description?: string | undefined;
    strict?: boolean | null | undefined;
    parameters?: Record<string, any> | undefined;
}, {
    name: string;
    description?: string | undefined;
    strict?: boolean | null | undefined;
    parameters?: Record<string, any> | undefined;
}>;
//# sourceMappingURL=function-object.zod.d.ts.map