import { Recognizer, Context, Match } from '../type';
/**
 * Charset recognizer for UTF-8
 */
export default class utf8 implements Recognizer {
    name(): string;
    match(det: Context): Match;
}
