import * as React from 'react'; import { UiButton } from '../../schema'; import { Widget } from './widget'; export declare class ButtonWidget extends Widget { protected get ui(): UiButton; protected onClick: () => Promise; private observerRender; protected get label(): string; render(): React.FunctionComponentElement<{}>; }