import { type ComponentProps, type ElementType } from "react"; import type { ThemingProps } from "../../types"; export interface ModalHeaderTheme { base: string; popup: string; title: string; close: { base: string; icon: string; }; } export interface ModalHeaderProps extends ComponentProps<"div">, ThemingProps { as?: ElementType; } export declare const ModalHeader: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;