import { ForwardedRef } from 'react';
import { MessageContentProperties } from '../message-content';
export type DialogContentProperties = MessageContentProperties;
/**
 * Component used to display content within a dialog.
 * @docs {@link https://design.visa.com/react/components/dialog | See Docs}
 */
declare const _default: <HTMLElementType = HTMLDivElement>(props: {
    children?: import("react").ReactNode | import("react").ReactNode[];
    ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & MessageContentProperties) => import("react").ReactElement;
export default _default;
