import { EventEmitter } from '../../stencil.core'; export declare type buttonColors = 'black' | 'gray' | 'orange' | 'pink' | 'white'; export declare class ManifoldButton { color?: 'black' | 'gray' | 'orange' | 'pink' | 'white'; disabled?: boolean; href?: string; size?: 'medium' | 'small'; type?: 'button' | 'submit'; stencilClickEvent?: (e: MouseEvent) => void; buttonClick: EventEmitter; onClick: (e: MouseEvent) => void; componentWillLoad(): void; render(): any; }