import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { LdapAttribute } from "./ldapattribute.js"; export type Ldap = { /** * Ability to connect with anonymous bind (empty username and password) */ allowsAnonymousBind?: boolean | undefined; /** * All root DN attributes available via anonymous bind */ attributes?: Array | null | undefined; /** * Result or error code returned by LDAP instance upon bind */ resultCode?: number | undefined; }; /** @internal */ export declare const Ldap$inboundSchema: z.ZodType; export declare function ldapFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ldap.d.ts.map