import type { DirectoryUser, EnterpriseConnection } from "./types.js"; /** All org users (200/page, Link-header pagination). */ export declare function listUsers(conn: EnterpriseConnection): Promise; export type OktaApp = { id?: string; name?: string; label?: string; status?: string; signOnMode?: string; }; /** The org's app catalog (what the company signs into via Okta). */ export declare function listApps(conn: EnterpriseConnection): Promise;