import { type PolymorphicComponentProps } from "../Polymorphic"; import type { ThemeSize, ThemeRadius } from "../theme.types"; export type PaperOwnProps = { elevation?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl"; radius?: ThemeRadius; padding?: ThemeSize; }; export type PaperProps = PolymorphicComponentProps; declare const defaultElement = "div"; /** 多态组件, ref会转发给实际的组件 */ export declare function Paper(props: PaperProps): import("react").JSX.Element; export {};