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