import React from 'react'; import type { Colors, CommonComponentProps, MarginModifierProp, ModifierClassProp } from '../types'; import type { GetRef } from '../utils/refs'; interface RadioInputProps extends CommonComponentProps, MarginModifierProp, ModifierClassProp { 'aria-invalid'?: React.AriaAttributes['aria-invalid']; checked?: boolean; color?: Colors; defaultChecked?: boolean; disabled?: boolean; getRef?: GetRef; id?: string; label?: React.ReactNode; name?: string; onChange?: React.ChangeEventHandler; readOnly?: boolean; required?: boolean; tabIndex?: number; value?: number | string; } export declare function RadioInput({ _modifierClass, 'aria-describedby': ariaDescribedby, 'aria-invalid': ariaInvalid, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, checked, color, defaultChecked, disabled, getRef, id, label, margin, name, onChange, readOnly, required, tabIndex, value, ...rest }: RadioInputProps): React.JSX.Element; export {};