import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Result = { /** * The unique ID for the attribute value. */ attributeId?: string | undefined; /** * The human-readable name for the issuer of the attribute. */ issuerId?: string | undefined; }; /** @internal */ export declare const Result$inboundSchema: z.ZodType; /** @internal */ export type Result$Outbound = { attributeId?: string | undefined; issuerId?: string | undefined; }; /** @internal */ export declare const Result$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 Result$ { /** @deprecated use `Result$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Result$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Result$Outbound` instead. */ type Outbound = Result$Outbound; } export declare function resultToJSON(result: Result): string; export declare function resultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=result.d.ts.map