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