import { JSX } from 'react'; import { MessageStyleProps } from './message'; export interface CheckboxProps extends React.InputHTMLAttributes, MessageStyleProps { className?: string; label?: string; helperMessage?: React.ReactNode | string; messageTestId?: string; dataTestid?: string; } export declare const Checkbox: ({ className, label, helperMessage, messageTestId, dataTestid, ...props }: CheckboxProps) => JSX.Element; //# sourceMappingURL=checkbox.d.ts.map