import { ErrorWrapperClassNameProps } from '../../ErrorWrapper'; export interface CheckboxProps extends ErrorWrapperClassNameProps, Omit, 'type' | 'id' | 'className' | 'children' | 'size'> { /** Adds custom classes to the root element. */ className?: string; /** Label text shown inside the pill. */ children: React.ReactNode; /** input id of the underlying checkbox */ inputId?: string; /** Activates error styling. Can be true while errorText is empty (e.g. when used in a FormGroup). */ error?: boolean; /** Error text to show above the component. */ errorText?: string; /** Error text id */ errorTextId?: string; /** Sets the data-testid attribute. */ testId?: string; /** Ref forwarded to the underlying input element. */ ref?: React.Ref; } declare const Checkbox: React.FC; export default Checkbox;