import type { ComponentPropsWithRef, ElementType } from 'react'; import { type MessageProperties } from '../message'; export type DialogProperties = { /** Message Type */ messageType?: MessageProperties['messageType']; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Pop-up windows that overlay page content to facilitate user interactions or show important information. * @docs {@link https://design.visa.com/components/dialog/?code_library=react | See Docs} * @related dialog-close-button, dialog-header, message-content, use-focus-trap * @vgar TODO * @wcag TODO */ declare const Dialog: { ({ className, messageType, tag, ...remainingProps }: DialogProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Dialog;