export interface DirectoryListOptions { organizationId?: string; limit?: number; before?: string; after?: string; order?: string; } export declare function runDirectoryList(options: DirectoryListOptions, apiKey: string, baseUrl?: string): Promise; export declare function runDirectoryGet(id: string, apiKey: string, baseUrl?: string): Promise; export declare function runDirectoryDelete(id: string, options: { force?: boolean; }, apiKey: string, baseUrl?: string): Promise; export interface DirectoryListUsersOptions { directory?: string; group?: string; limit?: number; before?: string; after?: string; } export declare function runDirectoryListUsers(options: DirectoryListUsersOptions, apiKey: string, baseUrl?: string): Promise; export interface DirectoryListGroupsOptions { directory: string; limit?: number; before?: string; after?: string; } export declare function runDirectoryListGroups(options: DirectoryListGroupsOptions, apiKey: string, baseUrl?: string): Promise;