import { SvgIconProps } from '@mui/material'; import { ReactNode } from 'react'; export type IconSize = 'xxs' | 'xs' | 'sm' | 'md' | 'xmd' | 'lg' | 'xl' | 'inherit'; export interface ISvgIconProps extends SvgIconProps { size?: IconSize | string | number; } export declare const withSvgIcon: (element: ReactNode, extraProps?: SvgIconProps) => import('react').ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=withSvgIcon.d.ts.map