import { default as React } from 'react'; import { SafePick } from '../../../.deps/utils/src'; import { ImageProps } from '../../Image/Image'; import { SelectKey } from './RadioGroup'; import { RenderRadioGroupOptionProps } from './types'; /** @inheritdoc */ export interface RadioGroupImageOptionInheritedImageProps extends SafePick, SafePick, 'alt'> { } /** @inheritdoc */ export interface RadioGroupImageOptionInheritedRadioOptionProps extends RenderRadioGroupOptionProps { } /** @inheritdoc */ export interface RadioGroupImageOptionProps extends RadioGroupImageOptionInheritedImageProps, RadioGroupImageOptionInheritedRadioOptionProps { } export declare function RadioGroupImageOption({ value, checked, disabled, required, textLabel, description, validity, onChange, ref, src, alt, fit, aspectRatio, size, ...rest }: RadioGroupImageOptionProps): React.JSX.Element;