import * as z from "zod/v3"; export type CrudUpdateInputBody = { /** * 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 CrudUpdateInputBody$Outbound = { description?: string | undefined; name: string; query: string; }; /** @internal */ export declare const CrudUpdateInputBody$outboundSchema: z.ZodType; export declare function crudUpdateInputBodyToJSON(crudUpdateInputBody: CrudUpdateInputBody): string; //# sourceMappingURL=crudupdateinputbody.d.ts.map