export interface RuntimeModeReport { mode: string; connected: boolean; detail: string; } export declare function runRemoteMode(target: string): RuntimeModeReport; export declare function runSshMode(target: string): RuntimeModeReport; export declare function runTeleportMode(target: string): RuntimeModeReport;