import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateshortcutRequest = { /** * 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; /** * CreateShortcut request */ createShortcutRequest: components.CreateShortcutRequest; }; /** @internal */ export type CreateshortcutRequest$Outbound = { locale?: string | undefined; CreateShortcutRequest: components.CreateShortcutRequest$Outbound; }; /** @internal */ export declare const CreateshortcutRequest$outboundSchema: z.ZodType; export declare function createshortcutRequestToJSON(createshortcutRequest: CreateshortcutRequest): string; //# sourceMappingURL=createshortcut.d.ts.map