export interface CommandMapping {
    command: string;
    naturalPhrases: Map<string, string[]>;
    priority: number;
}
export declare class CommandMappings {
    private mappings;
    private dictionary;
    private initialized;
    constructor();
    initialize(): Promise<void>;
    getSuggestions(_input: string, language: string, maxResults?: number): Promise<string[]>;
    getCommandForPhrase(_phrase: string, language: string): string | null;
    private loadMappings;
}
