export declare function runUserGet(userId: string, apiKey: string, baseUrl?: string): Promise; export interface UserListOptions { email?: string; organization?: string; limit?: number; before?: string; after?: string; order?: string; } export declare function runUserList(options: UserListOptions, apiKey: string, baseUrl?: string): Promise; export interface UserUpdateOptions { firstName?: string; lastName?: string; emailVerified?: boolean; password?: string; externalId?: string; } export declare function runUserUpdate(userId: string, apiKey: string, options: UserUpdateOptions, baseUrl?: string): Promise; export declare function runUserDelete(userId: string, apiKey: string, baseUrl?: string): Promise;