import React from "react"; import { ICheckboxBaseProps } from "../CheckboxBase"; export type TCheckboxProps = Omit & { indeterminate?: boolean; }; declare const Checkbox: React.FC; export default Checkbox;