import type { SxProps } from '@mui/material';
import React, { FC } from 'react';
declare const Chip: FC<{
    label: string;
    icon?: React.ReactElement;
    sx?: SxProps;
    href?: string;
}>;
export default Chip;
