import React from 'react'; import { FieldSize, Intensity } from 'types'; export interface CheckboxProps extends React.InputHTMLAttributes { id: string; intensity?: Intensity; label: React.ReactNode; error?: boolean; fieldSize?: FieldSize; required?: boolean; indeterminate?: boolean; } declare const Checkbox: React.ForwardRefExoticComponent>; export default Checkbox;