import { Color, Emphasis, Size } from '../types'; import '@material/web/button/elevated-button'; import '@material/web/button/filled-button'; import '@material/web/button/outlined-button'; import '@material/web/button/text-button'; export declare class DyneButton { /** button color could be: 'primary', 'secondary' or 'tertiary' */ color?: Color; /** button sizes could be: 'small', 'medium' or 'large' */ size?: Size; /** button emphasis could be: 'slight', 'moderate' or 'high' */ emphasis?: Emphasis; render(): any; }