import { ElementType } from 'react'; import type { DialogTitleProps } from './types'; /** * Dialog title component that provides the accessible name for the dialog. * Automatically associates with the dialog via aria-labelledby. */ export declare const DialogTitle: { ({ as, level, ref, children, ...props }: DialogTitleProps): import("react/jsx-runtime").JSX.Element; displayName: string; };