import React from 'react'; import { type IconProps } from './core'; interface IconCirclePlusOutlinedProps extends IconProps { base?: '12' | '16' | '24'; } export declare function IconCirclePlusOutlined({ base, ...props }: IconCirclePlusOutlinedProps): React.JSX.Element; export {};