import React from "react";
import "./Ui89InputCheckBox.css";
export interface Ui89InputCheckBoxProps {
    value: boolean;
    onChange?: (value: boolean) => void;
}
export declare function Ui89InputCheckBox(props: Ui89InputCheckBoxProps): React.JSX.Element;
