import { OnClick } from "./onClick"; /** * A button with text and onclick action. */ export declare class TextButton { /** * The onclick action of the button. */ private onClick?; /** * The text of the button. */ private text?; getOnClick(): OnClick; setOnClick(value: OnClick): TextButton; getText(): string; setText(value: string): TextButton; }