import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IdentityAttribute = { attributeType?: string | undefined; attributeValue?: string | undefined; }; /** @internal */ export declare const IdentityAttribute$inboundSchema: z.ZodType; /** @internal */ export type IdentityAttribute$Outbound = { attributeType?: string | undefined; attributeValue?: string | undefined; }; /** @internal */ export declare const IdentityAttribute$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 IdentityAttribute$ { /** @deprecated use `IdentityAttribute$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IdentityAttribute$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IdentityAttribute$Outbound` instead. */ type Outbound = IdentityAttribute$Outbound; } export declare function identityAttributeToJSON(identityAttribute: IdentityAttribute): string; export declare function identityAttributeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=identityattribute.d.ts.map