import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PinDocument } from "./pindocument.js"; export type GetPinResponse = { pin?: PinDocument | undefined; }; /** @internal */ export declare const GetPinResponse$inboundSchema: z.ZodType; export declare function getPinResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getpinresponse.d.ts.map