export declare const toolsConfig: {
    listAvailableRegions: {
        name: string;
        tags: string[];
    };
    listRentedNumbers: {
        name: string;
        tags: string[];
    };
    rentNumbers: {
        name: string;
        tags: string[];
    };
    searchForAvailableNumbers: {
        name: string;
        tags: string[];
    };
};
export type NumbersToolKey = keyof typeof toolsConfig;
export declare const getToolName: (toolKey: NumbersToolKey) => string;
