/** * Pre-defined button styles, that can be: * - gray * - green */ export declare type ButtonType = 'green' | 'gray'; /** * Pre-styled button that can hold anything */ export declare class ButtonComponent { /** * The button type. * * @default 'gray' */ btnType: ButtonType; /** * Determine if the button must be disabled. * * @default false */ disabled: boolean; /** * Empty constructor. */ constructor(); }