import { BoxProps, SxProps } from '@mui/material';
import { CommonComponentPropertys } from '../../componentProperty';
import { ReactNode } from 'react';

export type IconComponentWrapperProps = {
    sx: SxProps & BoxProps;
    color?: string;
    path: string;
    rootInjection: ReactNode;
    size?: string;
    horizontal?: boolean;
    vertical?: boolean;
    rotate?: string;
} & CommonComponentPropertys;
export declare const IconComponentWrapper: (props: IconComponentWrapperProps) => import("react/jsx-runtime").JSX.Element;
