import { 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 { }