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