import React, { FC } from 'react'; import { SxProps } from '@mui/material'; interface PaperProps { sx?: SxProps; square?: boolean; elevation?: number; variant?: string; className?: string; children?: React.ReactNode; } export declare const Paper: FC; export {};