export declare class ZeaParamWidgetBoolean { /** * Parameter to be edited */ parameter: any; /** * Whether the checkbox should be checked */ checked: boolean; /** * The application data */ appData: any; private checkboxInput?; /** * Class constructor */ constructor(); /** * Run when component loads */ componentDidLoad(): void; /** * Run when input changes */ onChange(): void; /** * Handles the creation of the UX Change object and the UndoRedoManager * * @param {Parameter} value - Parameter object */ handleUXChange(value: any): void; /** * Render method. * * @return {JSX} The generated html */ render(): any; }