import { EventEmitter } from '../../stencil-public-runtime'; export declare enum ButtonTheme { primary = "primary", secondary = "secondary", flat = "flat" } export declare enum ButtonSize { s = "s", m = "m", l = "l" } export declare class AmpButton { /** * Theme: primary (default), secondary, flat */ type: ButtonTheme; /** * Size: s, m (default), l */ size: ButtonSize; /** * Sets a disabled state to the button */ disabled: boolean; /** * Sets a loading state to the button */ loading: boolean; /** * Allows the button to grow to 100% width of the parent container */ fullwidth: boolean; /** * Click event emitted when the button is clicked */ buttonClicked: EventEmitter; handleClick(): void; render(): any; }