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