import * as i0 from "@angular/core"; type ButtonVariant = 'primary' | 'secondary' | 'ghost' | 'danger'; type ButtonSize = 'sm' | 'md' | 'lg'; type ButtonType = 'button' | 'submit' | 'reset'; export declare class AnimaxButtonComponent { /** visual */ variant: ButtonVariant; size: ButtonSize; /** behavior */ disabled: boolean; loading: boolean; type: ButtonType; /** opcional: inline SVGs (como string) */ iconLeft?: string; iconRight?: string; /** tema da página (facilita theming por host) */ base: boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};