import { ComponentPropsWithRef, FC } from 'react'; interface CheckboxProps extends ComponentPropsWithRef<'div'> { themeColor?: string; checked?: boolean; disabled?: boolean; } declare const PseudoCheckbox: FC; export default PseudoCheckbox;