import { EventEmitter } from '../../stencil-public-runtime'; export declare class RasaButton { /** * Additional value that is passed at button click */ reply: string; /** * Is button selected as option */ isSelected: boolean; /** * On button click event emitter */ buttonClickHandler: EventEmitter<{ value: string; }>; private buttonClick; render(): any; }