import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Shortcut } from "./shortcut.js"; import { ShortcutError } from "./shortcuterror.js"; export type GetShortcutResponse = { shortcut?: Shortcut | undefined; error?: ShortcutError | undefined; }; /** @internal */ export declare const GetShortcutResponse$inboundSchema: z.ZodType; export declare function getShortcutResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getshortcutresponse.d.ts.map