import { type JSX } from "react";
import type { LnComponent } from "../../types.js";
export declare const DialogTitle: import("react").ForwardRefExoticComponent<Omit<DialogTitle.Props, "ref"> & import("react").RefAttributes<HTMLHeadingElement>>;
export declare namespace DialogTitle {
    type Props = LnComponent<Omit<JSX.IntrinsicElements["h2"], "id">, State>;
    interface State {
        readonly id: string;
    }
}
