import React from 'react'; interface DialogContextValue { headingId: string; headingRef: React.RefObject; headingLevel: number; onClose: () => void; forceAction: boolean; closeButtonText: string; } declare const DialogContext: React.Context; declare function useDialogContext(): DialogContextValue; export { DialogContext, useDialogContext }; export type { DialogContextValue };