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