import { CharListItem } from './CharListItem'; export declare class WordsListItem { words?: string; confidence?: number; location?: Array>; private 'char_list'?; constructor(); withWords(words: string): WordsListItem; withConfidence(confidence: number): WordsListItem; withLocation(location: Array>): WordsListItem; withCharList(charList: Array): WordsListItem; set charList(charList: Array | undefined); get charList(): Array | undefined; } //# sourceMappingURL=WordsListItem.d.ts.map