import { type TypographyProperties } from '../typography'; export type DialogHeaderProperties = TypographyProperties; /** * Container for the heading area of a dialog pop-up window. * @docs {@link https://design.visa.com/components/dialog/?code_library=react | See Docs} */ declare const DialogHeader: { ({ className, tag, ...remainingProps }: DialogHeaderProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default DialogHeader;