import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FetchResult, FetchResult$Outbound } from "./fetchresult.js"; /** * Response body for the Fetch API GET method. */ export type V3FetchResponse = { /** * Array of identity attribute results containing attributeId, issuerId, and attributeValue. */ results: Array; }; /** @internal */ export declare const V3FetchResponse$inboundSchema: z.ZodType; /** @internal */ export type V3FetchResponse$Outbound = { results: Array; }; /** @internal */ export declare const V3FetchResponse$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace V3FetchResponse$ { /** @deprecated use `V3FetchResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3FetchResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3FetchResponse$Outbound` instead. */ type Outbound = V3FetchResponse$Outbound; } export declare function v3FetchResponseToJSON(v3FetchResponse: V3FetchResponse): string; export declare function v3FetchResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3fetchresponse.d.ts.map