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 CreateShortcutResponse = { shortcut?: Shortcut | undefined; error?: ShortcutError | undefined; }; /** @internal */ export declare const CreateShortcutResponse$inboundSchema: z.ZodType; export declare function createShortcutResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createshortcutresponse.d.ts.map