import AttributeValues from "./AttributeValues.js";
import HistoryContainer from "./HistoryContainer.js";
export default class ClearHistoryButton {
    readonly attributeValues: AttributeValues;
    readonly addressId: string;
    readonly historyContainer: HistoryContainer;
    private readonly button;
    element: HTMLElement;
    constructor(attributeValues: AttributeValues, addressId: string, historyContainer: HistoryContainer);
    private build;
    private handleClick;
    destroy(): void;
}
