import type { ComponentPropsWithoutRef } from 'react'; type ModalTitleProps = ComponentPropsWithoutRef<'h2'>; declare function ModalTitle({ className, ...props }: ModalTitleProps): import("react/jsx-runtime").JSX.Element; export default ModalTitle; export type { ModalTitleProps };