export declare class ButtonComponent { /** * The text of the button. * @type {string} */ text: string; /** * The icon of the button (material-icons). * @type {string} */ icon: string; /** * The loading state of the button. * @type {boolean} */ loading: boolean; /** * The disabled state of the button. * @type {boolean} */ disabled: boolean; /** * The reversed state of the button. * @type {boolean} */ reversed: boolean; /** * The grouped state of the button. * @type {boolean} */ grouped: boolean; /** * The type of the button. * @type {string} */ type: string; /** * The color of the button. * @type {string} */ color: string; }