import type { Command } from "commander"; import type { CliContainer } from "../container.js"; export interface ProviderLoginOptions { apiKey?: string; baseUrl?: string; shapeBaseUrl?: string[]; } export declare function registerProviderCommand(program: Command, container: CliContainer): void;