import { HTMLAttributes } from 'react'; export interface DialogContextValue extends HTMLAttributes { type?: 'modal' | 'popover' | 'tray' | 'fullscreen' | 'fullscreenTakeover'; isDismissable?: boolean; onClose?: (arg?: string) => void; } export declare const DialogContext: import("react").Context; export declare function useDialogContext(): DialogContextValue;