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