import { EventEmitter, OnInit } from '@angular/core';
export declare class XiconButtonComponent implements OnInit {
    /**
     * Label to use for accessibility.
     * @required
     */
    label: string;
    /**
     * @deprecated - Remove at breaking change and go to (click)
     */
    clickEvent: EventEmitter<any>;
    click: EventEmitter<any>;
    constructor();
    ngOnInit(): void;
    onBtnClick(): void;
}
