import { ButtonConfigInterface } from './config'; export declare class Button { private _container; config: ButtonConfigInterface; get element(): HTMLElement; constructor(container: HTMLElement, config?: ButtonConfigInterface); setConfig(config: ButtonConfigInterface): void; private _handleClick; show(): void; hide(): void; destroy(): void; } export type { ButtonConfigInterface };