import * as React$1 from "react"; //#region src/dialog/warnings.d.ts type TitleWarningProps = { titleId?: string; }; /** Dev-only component that warns when a dialog is missing a title. */ declare const TitleWarning: React$1.FC; type DescriptionWarningProps = { contentRef: React$1.RefObject; descriptionId?: string; }; /** Dev-only component that warns when a dialog is missing a description. */ declare const DescriptionWarning: React$1.FC; //#endregion export { DescriptionWarning, TitleWarning };