import { Property } from "immuto";
import { FormElementProps } from "./FormElementProps";
export interface CheckBoxProps extends FormElementProps {
binding: Property<boolean | undefined>;
}
export declare function CheckBox(props: CheckBoxProps): JSX.Element;