import type { RuntimeEnv } from "../../runtime.js"; export declare function modelsAuthSetupTokenCommand(opts: { provider?: string; yes?: boolean; }, runtime: RuntimeEnv): Promise; export declare function modelsAuthPasteTokenCommand(opts: { provider?: string; profileId?: string; expiresIn?: string; }, runtime: RuntimeEnv): Promise; export declare function modelsAuthAddCommand(_opts: Record, runtime: RuntimeEnv): Promise; type LoginOptions = { provider?: string; method?: string; setDefault?: boolean; }; export declare function modelsAuthLoginCommand(opts: LoginOptions, runtime: RuntimeEnv): Promise; export {};