import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type LdapAttribute = { /** * Name of the LDAP attribute in the root DN */ name?: string | undefined; /** * Values for the respective LDAP attribute */ values?: Array | null | undefined; }; /** @internal */ export declare const LdapAttribute$inboundSchema: z.ZodType; export declare function ldapAttributeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ldapattribute.d.ts.map