import { ChipProps } from '@mui/material';
export interface NotificationNewChipProps extends ChipProps {
    /**
     * Overrides or extends the styles applied to the component.
     * @default null
     */
    className?: string;
    /**
     * Any other properties
     */
    [p: string]: any;
}
export default function NewChip(inProps: NotificationNewChipProps): JSX.Element;
