import { ComponentProps } from 'react'; import { Checkbox } from '@cloudflare/component-checkbox'; import { BaseProps } from './Base'; export declare type CheckboxProps = Omit, ValueType>, 'value' | 'name'> & { value?: ValueType; name?: string; }; export default function FormCheckbox({ labelProps, componentStyleProps, ...props }: CheckboxProps): JSX.Element;