import { Chalk } from "chalk";
export default abstract class Keyword {
    readonly color: Chalk;
    abstract shouldMatch: string[];
    abstract shouldNotMatch: string[];
    constructor();
    abstract check(input: string): boolean;
    abstract getColored(input: string): string;
}
