import React from 'react';
export interface RadioIconProps extends React.ComponentPropsWithoutRef<'svg'> {
    size?: string | number;
}
export declare function RadioIcon({ size, style, ...others }: RadioIconProps): React.JSX.Element;
