/**
 * switchProfile.ts
 *
 * Tool for switching between profiles in the current account.
 * This tool updates the locally stored profile configuration.
 */
import type { LocalToolHandler } from "../types.js";
/**
 * Tool definition for switch profile tool
 */
export declare const switchProfileTool: {
    name: string;
    description: string;
    inputSchema: {
        type: string;
        properties: {
            alias: {
                type: string;
                description: string;
            };
        };
        required: string[];
    };
};
/**
 * Get the current profile alias
 */
export declare function getCurrentProfile(): Promise<string | undefined>;
/**
 * Handler for the switch profile tool
 */
export declare const handleSwitchProfile: LocalToolHandler;
//# sourceMappingURL=switchProfile.d.ts.map