import Keyword from "../Keyword";
export default class KwNo extends Keyword {
    shouldMatch: string[];
    shouldNotMatch: string[];
    check(input: string): boolean;
    getColored(input: string): string;
}
