import { AllHTMLAttributes, ReactNode, ElementType } from 'react';
import { T as Themes } from '../constants-QFINMz1u.js';
import { Elevations } from './Paper.constants.js';

interface PaperProps extends AllHTMLAttributes<HTMLDivElement> {
    children: ReactNode;
    element?: ElementType;
    elevation?: `${Elevations}`;
    fullStyle?: boolean;
    inlineStyle?: boolean;
    theme?: Themes;
}

export type { PaperProps };
