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<Theme>;
    elevation?: number;
    square?: boolean;
    children?: React.ReactNode;
    variant?: OverridableStringUnion<PaperVariant, PaperPropsVariantOverrides>;
}
