import { type ComponentPropsWithoutRef } from 'react'; type CheckboxProps = Omit, 'type'> & { label?: string; labelPosition?: 'left' | 'right' | 'top' | 'bottom'; }; declare function Checkbox({ className, disabled, id, label, labelPosition, ...props }: CheckboxProps): import("react/jsx-runtime").JSX.Element; export type { CheckboxProps }; export default Checkbox;