import { type ComponentProps } from "react"; import type { ThemingProps } from "../../types"; export interface ModalBodyTheme { base: string; popup: string; } export interface ModalBodyProps extends ComponentProps<"div">, ThemingProps { } export declare const ModalBody: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;