import type { ListDictionariesResult } from '../dictionaries/index.js';
import type { DictionariesOptions } from '../options.js';
import type { DictionaryPathFormat } from './DictionaryPathFormat.js';
import { type PathInterface } from './helpers.js';
export interface EmitDictOptions {
    /** current working directory */
    cwd: string;
    lineWidth?: number;
    dictionaryPathFormat: DictionaryPathFormat;
    iPath?: PathInterface;
    color?: boolean | undefined;
    options: DictionariesOptions;
}
export declare function emitListDictionariesResults(results: ListDictionariesResult[], options: EmitDictOptions): void;
export declare function calcListDictsResultsReport(results: ListDictionariesResult[], options: EmitDictOptions): {
    table: string;
    errors: string;
};
//# sourceMappingURL=dictionaryListEmitter.d.ts.map