import type { DictionaryId, DictionaryReference } from '@cspell/cspell-types';
export interface DictionaryReferenceCollection {
    isEnabled(name: DictionaryId): boolean | undefined;
    isBlocked(name: DictionaryId): boolean | undefined;
    enabled(): DictionaryId[];
    blocked(): DictionaryId[];
    dictionaryIds: DictionaryId[];
}
export declare function createDictionaryReferenceCollection(dictionaries: DictionaryReference[]): DictionaryReferenceCollection;
//# sourceMappingURL=DictionaryReferenceCollection.d.ts.map