import * as React from 'react'; import { CloseButtonVariant } from '../CloseButton/CloseButton'; export interface AbstractModalHeaderProps extends React.HTMLAttributes { /** * Provides an accessible label for the close * button. It is used for Assistive Technology when the label text is not * readable. */ closeLabel?: string; /** * Sets the variant for close button. */ closeVariant?: CloseButtonVariant; /** * Specify whether the Component should contain a close button */ closeButton?: boolean; /** * A Callback fired when the close button is clicked. If used directly inside * a ModalContext, the onHide will automatically be propagated up * to the parent `onHide`. */ onHide?: () => void; } declare const AbstractModalHeader: React.ForwardRefExoticComponent>; export default AbstractModalHeader;