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