import React from 'react';
export interface RadioIconProps {
    /** Width and height of the shape, defaults to '16px'. */
    size?: string;
    /** Color of the shape outline. */
    color?: string;
    /** Color of the area inside the outline. Defaults to 'none' (transparent) */
    backgroundColor?: string;
    /** Custom class applied to the base element */
    className?: string;
}
export declare const RadioIcon: (props: RadioIconProps) => React.JSX.Element;
//# sourceMappingURL=RadioIcon.d.ts.map