export declare class I18N {
    private readonly prompts;
    constructor(customPrompts?: any);
    private retrieve;
    slice(key: string): string;
    errors(key: string): string;
    tools(key: string): string | Record<string, string>;
}
