import { HistoryItem } from './history-item';
import { EnrichedTag } from '../parser/enriched-tag';
export declare class OptionsHistoryItem extends HistoryItem {
    readonly tag: EnrichedTag;
    constructor(tag: EnrichedTag, timestamp: number, index: number);
}
