import * as z from "zod/v3"; import * as components from "../components/index.js"; export type EditpinRequest = { /** * 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; /** * Edit pins request */ editPinRequest: components.EditPinRequest; }; /** @internal */ export type EditpinRequest$Outbound = { locale?: string | undefined; EditPinRequest: components.EditPinRequest$Outbound; }; /** @internal */ export declare const EditpinRequest$outboundSchema: z.ZodType; export declare function editpinRequestToJSON(editpinRequest: EditpinRequest): string; //# sourceMappingURL=editpin.d.ts.map