import React from 'react';
/**
 * __Radio icon__
 *
 * Used to visually represent the selected state in DropdownItemRadio
 *
 * @internal
 */
declare const RadioIcon: ({ checked }: {
    checked: boolean;
}) => React.JSX.Element;
export default RadioIcon;
