import { type TransitionProps } from "../Transition"; import type { ThemeRadius, ThemeShadow } from "../theme.types"; export interface ModalContentProps extends React.ComponentProps<"div"> { /** Props passed down to the `Transition` component */ transitionProps?: TransitionProps; /** Key of `theme.shadows` or any valid CSS value to set `box-shadow`, `none` by default */ shadow?: ThemeShadow; /** Key of `theme.radius` or any valid CSS value to set border-radius, numbers are converted to rem, `theme.defaultRadius` by default */ radius?: ThemeRadius; innerProps?: React.ComponentProps<"div">; fullScreen?: boolean; } export declare function ModalContent(props: ModalContentProps): import("react").JSX.Element;