import * as z from "zod/v3"; export type CrudCreateInputBody = { /** * description of the collection */ description?: string | undefined; /** * name of the collection */ name: string; /** * query string to search upon to build the collection */ query: string; }; /** @internal */ export type CrudCreateInputBody$Outbound = { description?: string | undefined; name: string; query: string; }; /** @internal */ export declare const CrudCreateInputBody$outboundSchema: z.ZodType; export declare function crudCreateInputBodyToJSON(crudCreateInputBody: CrudCreateInputBody): string; //# sourceMappingURL=crudcreateinputbody.d.ts.map