import { z } from 'zod';
export declare const searchSchema: z.ZodObject<{
    prompt: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    prompt?: string | undefined;
}, {
    prompt?: string | undefined;
}>;
