export type Params = { instances?: string[]; owner?: string; zone?: string; is_cluster_node?: number; public_webssh?: number; verification_method?: number; username?: string; passwd?: string; [key: string]: any; }; export type Broker = { instance_id: string; broker_host: string; broker_ip: string; broker_port: number; ws_id?: string; err_msg?: string; }; export declare function createBroker(params: Params): Promise; export type Instance = any; export declare function getInstance(params: Params): Promise; export declare function restartInstance(params: Params): Promise; export declare function checkUserActivity(): Promise<{ isActive: boolean; userId: any; }>; //# sourceMappingURL=apis.d.ts.map