export declare class SettingsCommands {
    private appDir;
    private configPath;
    private profileManager;
    constructor(appDir: string);
    showSettingsMenu(): Promise<void>;
    /**
     * View all configurations (Docker + Manual)
     */
    private viewAllConfigurations;
    /**
     * Format profiles list
     */
    private formatProfilesList;
    /**
     * Format config details
     */
    private formatConfigDetails;
    /**
     * Switch between modes
     */
    private switchMode;
    /**
     * Create new config and switch to it
     */
    private createAndSwitchToNew;
    /**
     * Edit current configuration
     */
    private editCurrentConfig;
    /**
     * Manage saved profiles
     */
    private manageProfiles;
    private pressEnter;
}
