import React from 'react'; import type { IIconProps } from '../utils'; export interface ICircleInner extends IIconProps { isGray?: boolean; } export declare const IconCircleInner: ({ isGray, width, height, viewBox }: ICircleInner) => React.JSX.Element;