import { z } from "zod";
export declare const fetchKbPageSchema: z.ZodObject<{
    url: z.ZodString;
}, z.core.$strip>;
export declare const saveKbPageSchema: z.ZodObject<{
    crawlJobId: z.ZodString;
    url: z.ZodString;
    title: z.ZodString;
    content: z.ZodString;
}, z.core.$strip>;
export declare const createManualKbPageSchema: z.ZodObject<{
    title: z.ZodString;
    content: z.ZodString;
}, z.core.$strip>;
export declare const createUploadKbPageSchema: z.ZodObject<{
    title: z.ZodString;
    content: z.ZodString;
}, z.core.$strip>;
