import React from 'react'; import { BoxProps } from '../../Box/Box'; import { RadioInputProps } from './RadioInput'; import { RadioGroupProps } from '../RadioGroup'; export interface RadioIconProps extends BoxProps { /** * Custom className to be applied to root node of component. */ className?: string; /** * Whether the input is in an error state. The icon will visually change accordingly. */ error?: RadioGroupProps['error']; /** * Whether the radio is selected. */ isSelected?: RadioInputProps['isSelected']; /** * If the input should be disabled and not focusable. */ isDisabled?: RadioInputProps['isDisabled']; /** * Additional props to be spread to rendered element */ [x: string]: any; } export declare const RadioInputIcon: React.FC;