import React from 'react'; import type { DefaultProps } from '../../types'; import type { PaperProps } from '@mui/material/Paper'; export interface IPaperProps extends DefaultProps, PaperProps { square?: boolean; elevation?: number; } declare const Paper: ({ children, style, padding, margin, ...otherProps }: IPaperProps) => React.JSX.Element; export default Paper;