import { Control, Path as Names } from 'react-hook-form'; import { FormValues, InputProps } from "./type"; import { TagStyle } from '@team-devmonster/react-tags'; export interface CheckboxProps extends Omit, 'placeholder'> { control: Control; name: Names; style?: TagStyle; disabledStyle?: TagStyle; errorStyle?: TagStyle; } export declare function Checkbox({ control, name, disabled, style, disabledStyle, errorStyle, checkedStyle, value, onClick, onChange: onOuterChange, ...rules }: CheckboxProps): import("react/jsx-runtime").JSX.Element;