export declare class Configuration {
    stopWords: string[];
    constructor(stopWords?: string[]);
    skipWord(word: string): boolean;
}
