import type { CliCommand } from '../utils/types.ts'; interface LogoutOptions { url?: string; yes?: boolean; } /** * Remove a server and its credentials * Supports: skywriter logout [url] [--yes] * - skywriter logout (interactive select) * - skywriter logout http://user@host.com (direct removal with confirmation) * - skywriter logout http://user@host.com -y (skip confirmation) */ export declare const logout: CliCommand<[LogoutOptions?]>; export {}; //# sourceMappingURL=logout.d.ts.map