import * as z from "zod/v3"; import * as components from "../components/index.js"; export type DeleteshortcutRequest = { /** * 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; /** * DeleteShortcut request */ deleteShortcutRequest: components.DeleteShortcutRequest; }; /** @internal */ export type DeleteshortcutRequest$Outbound = { locale?: string | undefined; DeleteShortcutRequest: components.DeleteShortcutRequest$Outbound; }; /** @internal */ export declare const DeleteshortcutRequest$outboundSchema: z.ZodType; export declare function deleteshortcutRequestToJSON(deleteshortcutRequest: DeleteshortcutRequest): string; //# sourceMappingURL=deleteshortcut.d.ts.map