import { SxProps } from '@mui/material'; import { Theme } from '../../theme/muiTheme'; import { DummyVariant } from './Dummy.types'; export interface Props { label: string; variant: DummyVariant; sx?: SxProps; } declare const Dummy: ({ label, variant, sx }: Props) => JSX.Element; export { Dummy };