import { ReactNode } from 'react'; import { CheckboxProps as MuiCheckboxProps, FormControlLabelProps, FormControlProps } from '@mui/material'; export type CheckboxShape = 'default' | 'rounded'; export type CheckboxProps = Omit & { error?: boolean; formControlLabelProps?: Omit; formControlProps?: Omit; helperText?: ReactNode; label?: ReactNode; shape?: CheckboxShape; }; export declare const Checkbox: import('react').ForwardRefExoticComponent & import('react').RefAttributes>;