import { Dialog as Component } from './Dialog'; export declare const Dialog: { readonly name: "Dialog"; readonly purpose: "Modal state container for a trigger and accessible dialog content."; readonly example: "\n Open dialog\n \n \n Confirm migration\n Review the migration before continuing.\n \n Cancel\n \n"; readonly body: "htmdx"; readonly props: readonly [{ readonly name: "defaultOpen"; readonly type: "boolean"; readonly default: false; readonly description: "Whether the dialog starts open."; }, { readonly name: "modal"; readonly type: "boolean"; readonly default: true; readonly description: "Whether the dialog blocks interaction with content outside it."; }]; readonly Component: typeof Component; };