export interface WordsCollection {
    size: number;
    has(words: string, caseSensitive: boolean): boolean;
    type?: string;
}
/**
 * Collection of words to be allowed after splitting.
 */
export interface AllowedSplitWordsCollection extends WordsCollection {
    type?: 'AllowedSplitWordsCollection';
}
export declare const defaultAllowedSplitWords: AllowedSplitWordsCollection;
/**
 * Collection of words to be excluded.
 */
export interface ExcludeWordsCollection extends WordsCollection {
    type?: 'ExcludeWordsCollection';
}
export declare const defaultExcludeWordsCollection: ExcludeWordsCollection;
//# sourceMappingURL=WordsCollection.d.ts.map