import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export declare const ShortcutErrorErrorType: { readonly NoPermission: "NO_PERMISSION"; readonly InvalidId: "INVALID_ID"; readonly ExistingShortcut: "EXISTING_SHORTCUT"; readonly InvalidChars: "INVALID_CHARS"; }; export type ShortcutErrorErrorType = OpenEnum; export type ShortcutError = { errorType?: ShortcutErrorErrorType | undefined; }; /** @internal */ export declare const ShortcutErrorErrorType$inboundSchema: z.ZodType; /** @internal */ export declare const ShortcutError$inboundSchema: z.ZodType; export declare function shortcutErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=shortcuterror.d.ts.map