import * as React from "react";
import { IOWidget, Options } from "../shared/widget";
export declare type CheckboxOptions = Options & {
selected_value: a;
unselected_value: a;
};
export interface CheckboxProps {
options: CheckboxOptions;
input: a;
on_done: (output: a) => void;
}
export interface CheckboxState {
}
export declare class Checkbox extends React.Component, CheckboxState> {
constructor(props: CheckboxProps, context: any);
render(): JSX.Element;
}
export declare let checkbox: (options: CheckboxOptions) => IOWidget;
export declare let bool: (options?: Options | undefined) => IOWidget;