import * as React from 'react'; import { DialogStore } from "../store/DialogStore.js"; export interface DialogRootContext { store: DialogStore; } export declare const DialogRootContext: React.Context | undefined>; export declare function useDialogRootContext(optional?: false): DialogRootContext; export declare function useDialogRootContext(optional: true): DialogRootContext | undefined;