import React from "react"; import { RadioProps as MDCRadioProps } from "@material/react-radio"; import { ColorSpecifier } from "../../theme/theme"; export interface RadioProps extends Omit { id?: string; wrapperClasses?: string; color?: ColorSpecifier; label?: string; className?: string; checked?: boolean; value?: string; disabled?: boolean; name?: string; onChange?: (e: React.FormEvent) => void; } declare const Radio: ({ id, color, label, value, name, className, wrapperClasses, onChange, ...rest }: RadioProps) => React.JSX.Element; export default Radio;