import * as React from 'react'; import { type BaseUIComponentProps } from "../../internals/types.mjs"; /** * A heading that labels the dialog. * Renders an `

` element. * * Documentation: [Base UI Dialog](https://base-ui.com/react/components/dialog) */ export declare const DialogTitle: React.ForwardRefExoticComponent & React.RefAttributes>; export interface DialogTitleProps extends BaseUIComponentProps<'h2', DialogTitleState> {} export interface DialogTitleState {} export declare namespace DialogTitle { type Props = DialogTitleProps; type State = DialogTitleState; }