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

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