import React from 'react'; import type { ChangeEvent } from 'react'; import type { DefaultProps } from '../../types'; import type { RadioProps } from '@mui/material/Radio'; export interface IRadioProps extends DefaultProps, RadioProps { value?: string; checked?: boolean; disabled?: boolean; color?: 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning' | 'default'; onChange?: (event: ChangeEvent) => void; } declare const Radio: ({ color, padding, margin, style, ...otherProps }: IRadioProps) => React.JSX.Element; export default Radio;