import { type SshTarget } from './types.js'; /** * Parse an SSH target URL: ssh://[user@]host[:port][/path] */ export declare function parseSshTarget(target: string): SshTarget; /** * Format an SshTarget back into a URL string. */ export declare function formatSshTarget(target: SshTarget): string; //# sourceMappingURL=ssh-target.d.ts.map