import { Command } from 'commander'; import { type AuthCommandOptions, type AuthCommandIo } from '../lib/auth-ssh.js'; export type { AuthCommandOptions }; export interface AuthDependencies extends AuthCommandIo { runAuth: (providerArg: string, options: AuthCommandOptions) => Promise; defaultCloudUrl: string; } export declare function registerAuthCommands(program: Command, overrides?: Partial): void; //# sourceMappingURL=auth.d.ts.map