import { ShellType } from '../types.js'; export declare function listProfiles(): void; export declare function showProfile(name: string): void; export declare function createProfile(name: string, options: { template?: string; baseUrl?: string; model?: string; apiKey?: string; description?: string; clearKey?: boolean; }): void; export declare function editProfile(name: string, options: { baseUrl?: string; model?: string; apiKey?: string; description?: string; clearKey?: boolean; }): void; export declare function deleteProfileCommand(name: string, force?: boolean): void; export declare function useProfile(name: string, shell?: ShellType): void; export declare function resetEnvironment(shell?: ShellType): void; export declare function showCurrent(): void; export declare function showTemplates(): void; export declare function exportProfile(name: string): void; export declare function importProfile(jsonStr: string, name?: string): void; export declare function runWithProfile(name: string): Promise; export declare function runReset(): Promise; //# sourceMappingURL=profile.d.ts.map