import { TagToken } from './tokenizer';
export type MatchOptions = {
    blockSize: number;
    repeatingTokensAccuracy: number;
    ignoreWhitespaceDifferences: boolean;
    matchers: Record<string, (token: TagToken) => string>;
};
export declare const MatchOptions: MatchOptions;
