import { ComponentProps } from "react";
import type { InputBaseProps } from "../types/baseTypes";
type InputCheckBoxProps = InputBaseProps & Omit<ComponentProps<"input">, "type">;
declare function InputCheckBox({ name, label, value, onChangeInput, error, className, ...props }: InputCheckBoxProps): import("react/jsx-runtime").JSX.Element;
export default InputCheckBox;
