export interface SessionListOptions { limit?: number; before?: string; after?: string; order?: string; } export declare function runSessionList(userId: string, options: SessionListOptions, apiKey: string, baseUrl?: string): Promise; export declare function runSessionRevoke(sessionId: string, apiKey: string, baseUrl?: string): Promise;