import type { OptionsBase } from '../schemas/base'; interface MemberInfo { uid: string; email: string; role: string; is_tmp: boolean; has_2fa: boolean; password_policy_compliant: boolean; } export declare function listMembersInternal(orgId: string, options: OptionsBase, silent?: boolean): Promise; export declare function listMembers(orgId: string, options: OptionsBase): Promise; export {};