import type { ChipOwnProps } from '@mui/material';
type Props = {
    color?: string;
    backgroundColor?: string;
} & ChipOwnProps;
export default function Livemode({ color, backgroundColor, sx }: Props): import("react").JSX.Element;
export {};
