import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Result, Result$Outbound } from "./result.js"; export type V3DiscoverResponse = { /** * A list of discovered attributes for the given ProveID. */ results?: Array | undefined; }; /** @internal */ export declare const V3DiscoverResponse$inboundSchema: z.ZodType; /** @internal */ export type V3DiscoverResponse$Outbound = { results?: Array | undefined; }; /** @internal */ export declare const V3DiscoverResponse$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 V3DiscoverResponse$ { /** @deprecated use `V3DiscoverResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `V3DiscoverResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `V3DiscoverResponse$Outbound` instead. */ type Outbound = V3DiscoverResponse$Outbound; } export declare function v3DiscoverResponseToJSON(v3DiscoverResponse: V3DiscoverResponse): string; export declare function v3DiscoverResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=v3discoverresponse.d.ts.map