/// import { Path } from 'react-hook-form'; import type { IFormValues, PDSTextType } from '../../../common'; type ColorTheme = 'none' | 'white' | 'grey1'; type CheckboxProps = { text?: PDSTextType; fontWeight?: 'bold' | 'regular'; state?: 'normal' | 'disabled'; name: Path; colorTheme?: ColorTheme; onChange?: (e: React.ChangeEvent) => void; }; declare function Checkbox({ text, fontWeight, state, name, colorTheme, onChange }: CheckboxProps): JSX.Element; export default Checkbox;