import Input from "./Input.js";
import AttributeValues from "./AttributeValues.js";
export default class ClearButton {
    readonly input: Input;
    readonly attributeValues: AttributeValues;
    private readonly button;
    element: HTMLElement;
    constructor(input: Input, attributeValues: AttributeValues);
    private build;
    setDisabled: () => void;
    private handleClick;
    destroy(): void;
}
