import * as z from "zod/v3"; import * as components from "../components/index.js"; export type EditcollectionRequest = { /** * The client's preferred locale in rfc5646 format (e.g. `en`, `ja`, `pt-BR`). If omitted, the `Accept-Language` will be used. If not present or not supported, defaults to the closest match or `en`. */ locale?: string | undefined; /** * Collection content plus any additional metadata for the request. */ editCollectionRequest: components.EditCollectionRequest; }; /** @internal */ export type EditcollectionRequest$Outbound = { locale?: string | undefined; EditCollectionRequest: components.EditCollectionRequest$Outbound; }; /** @internal */ export declare const EditcollectionRequest$outboundSchema: z.ZodType; export declare function editcollectionRequestToJSON(editcollectionRequest: EditcollectionRequest): string; //# sourceMappingURL=editcollection.d.ts.map