import { PaperPropsVariantOverrides, SxProps } from '@mui/material'; import { Theme } from '@emotion/react'; import { MuiPaperBaseProps, PaperVariant } from '../types'; import { OverridableStringUnion } from '@mui/types'; export interface PaperBaseProps extends MuiPaperBaseProps { sx?: SxProps; elevation?: number; square?: boolean; children?: React.ReactNode; variant?: OverridableStringUnion; }