import { EventEmitter, ElementRef } from '@angular/core'; import { ButtonProps } from '@kite_aerolab/shared/components'; export declare class ButtonComponent { /** * Css class */ css: ButtonProps['css']; /** * Classname del botón */ className: ButtonProps['className']; /** * Disabled */ isDisabled: ButtonProps['isDisabled']; /** * ID del componente */ id: ButtonProps['id']; /** * Estado de isLoading: true o false. */ isLoading: ButtonProps['isLoading']; /** * Estado del proceso: true or false */ isProcess: ButtonProps['isProcess']; /** * Progreso del botón en proceso en porcentaje */ processProgress: ButtonProps['processProgress']; /** * Icono del botón */ icon: ButtonProps['icon']; /** * Tamaño del botón: sm o md */ size: ButtonProps['size']; /** * Tipo de botón */ type: ButtonProps['type']; /** * Variante del botón */ variant: ButtonProps['variant']; /** * Block true hace que el tamaño sea del 100% */ isBlock: ButtonProps['isBlock']; /** * tema del botón (light o dark) */ isDark: ButtonProps['isDark']; /** * Optional click handler */ onClick: EventEmitter; ref: ElementRef; get button(): string[]; get darkMode(): string; get buttonProgress(): string[]; } //# sourceMappingURL=button.component.d.ts.map