import React from 'react'; type RadioItemProps = { /** Whether this value is currently checked or not */ checked?: boolean; /** The node/text to put in the label of this radio item */ children: React.ReactNode; /** An extra class name to add to the outer div component */ className?: string; /** An extra class for disabling the radio button component */ disabled?: boolean; /** An extra class name for the input component */ inputClassName?: string; /** The value is invalid, style to show it's invalid */ isInvalid?: boolean; /** An extra class name for the label component */ labelClassName?: string; /** The name for this RadioItem. Should be specified by the parent Radio component */ name?: string; /** Triggered when the input is checked/unchecked. Provided by the parent Radio component. */ onChange?: React.ChangeEventHandler; /** The value to associate with this radio item */ value: string; /** An id used for test */ 'data-testid'?: string; }; /** * A RadioItem to be used within the Radio component. */ declare const RadioItem: React.ForwardRefExoticComponent>; export default RadioItem; //# sourceMappingURL=RadioItem.d.ts.map