import { ReactNode } from 'react';
import { ChipProps } from '@mui/material';
import { CommonComponentPropertys } from '../../componentProperty';

export type CChipProps = ChipProps & {
    icon?: string;
} & CommonComponentPropertys;
export type ChipWrapperProps = Omit<ChipProps, 'deleteIcon'> & {
    icon?: string;
    iconColor?: string;
    avatarInitials?: string;
    avatarBgColor?: string;
    avatarImage?: string;
    deleteIcon?: string;
} & CommonComponentPropertys & {
    rootInjection: ReactNode;
};
export declare const ChipWrapper: (props: ChipWrapperProps) => import("react/jsx-runtime").JSX.Element;
