import { CheckboxProps } from '@cloudscape-design/components'; import { Control, FieldPath, FieldPathValue, FieldValues, Path, RegisterOptions } from 'react-hook-form'; export interface CCheckboxProps extends Omit { name: Path; control: Control; defaultValue?: FieldPathValue>; rules?: Omit>, "disabled">; shouldUnregister?: boolean; } declare const CCheckbox: ({ name, control, defaultValue, rules, shouldUnregister, onChange, ...props }: CCheckboxProps) => import("react/jsx-runtime").JSX.Element; export default CCheckbox;