import type { DirectoryUser, EnterpriseConnection, MintedToken } from "./types.js"; /** * Mint an access token that acts AS `email` (domain-wide delegation). * Scopes default to the connection's configured scopes, then the contract set. */ export declare function mintUserToken(conn: EnterpriseConnection, email: string, scopes?: string[]): Promise; /** Full Workspace directory, impersonating the delegated admin (paginated). */ export declare function listUsers(conn: EnterpriseConnection): Promise;