import { DialogContent as Component } from './DialogContent'; export declare const DialogContent: { readonly name: "DialogContent"; readonly purpose: "Portalled modal surface; include a DialogTitle and DialogDescription for accessibility."; readonly example: "\n \n \n Publish report?\n The report will become visible to the team.\n \n Cancel\n \n"; readonly body: "htmdx"; readonly props: readonly [{ readonly name: "showCloseButton"; readonly type: "boolean"; readonly default: true; readonly description: "Whether to show the icon close control in the top corner."; }, { readonly name: "forceMount"; readonly type: "boolean"; readonly default: false; readonly description: "Keep the content mounted even when the dialog is closed."; }]; readonly Component: typeof Component; };