import { ISvgIconProps } from '@bifrostui/icons'; import React from 'react'; export interface IRadioButtonIconProps extends ISvgIconProps { checked: boolean; } declare function RadioButtonIcon(props: IRadioButtonIconProps): React.JSX.Element; export default RadioButtonIcon;