import type { DictionariesOptions } from '../options.js';
export interface ListDictionariesResult {
    /**
     * The name of the dictionary.
     */
    name: string;
    /**
     * The description of the dictionary.
     */
    description?: string | undefined;
    /**
     * The path to the dictionary file.
     */
    path?: string | undefined;
    /**
     * True if the dictionary is enabled.
     */
    enabled: boolean;
    /**
     * The inline dictionaries supported by the dictionary.
     */
    inline?: string[] | undefined;
    /**
     * the languages locales supported by the dictionary.
     */
    locales?: string[] | undefined;
    /**
     * The file types supported by the dictionary.
     */
    fileTypes?: string[] | undefined;
}
export declare function listDictionaries(options: DictionariesOptions): Promise<ListDictionariesResult[]>;
//# sourceMappingURL=listDictionaries.d.ts.map