import { type Ref } from 'react'; import { type InputControlProps } from '../../shared/contracts'; type Props = InputControlProps & { rootClassName?: string; className?: string; inputClassName?: string; ref?: Ref; }; export declare const Checkbox: ({ rootClassName, className, inputClassName, ref, }: Props) => import("react/jsx-runtime").JSX.Element; export {};