UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library

13 lines (12 loc) 681 B
import { ForwardedRef } from 'react'; import { TypographyProperties } from '../typography'; export type DialogHeaderProperties = TypographyProperties; /** * Container for the heading area of a dialog pop-up window. * @docs {@link https://design.visa.com/react/components/dialog | See Docs} */ declare const _default: <HTMLElementType = HTMLHeadingElement>(props: { children?: import("react").ReactNode | import("react").ReactNode[]; ref?: ForwardedRef<HTMLElementType> | undefined; } & import("react").AllHTMLAttributes<HTMLElementType> & (import("react").SVGAttributes<HTMLElementType> & TypographyProperties)) => import("react").ReactElement; export default _default;