import { BaseRule, IRule, IRuleConfig, IRuleParseOptions } from './BaseRule.js';
export interface IHighlightRuleConfig extends IRuleConfig {
    camelCase: boolean;
    masks: string[];
}
export default class HighlightRule extends BaseRule<IHighlightRuleConfig> implements IRule {
    #private;
    constructor(config: IHighlightRuleConfig);
    parse({ commit }: IRuleParseOptions): void;
}
