import { type SSHConnectionTarget } from "./connection-manager"; export declare function hasSshfs(): boolean; export declare function isMounted(path: string): Promise; export declare function mountRemote(host: SSHConnectionTarget, remotePath?: string): Promise; export declare function unmountRemote(host: SSHConnectionTarget): Promise; export declare function unmountAll(): Promise;