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