import * as React from "react";
import type * as Common from "../../common/types";
import type { As } from "../../Heading/types";
interface Props {
    description?: React.ReactNode;
    actions?: React.ReactNode;
    onClose?: Common.Event<React.SyntheticEvent<HTMLButtonElement | HTMLAnchorElement>>;
    title?: React.ReactNode;
    titleAs?: As;
    labelClose?: string;
    isSection?: boolean;
    dataA11ySection?: string;
    expandable?: boolean;
    expanded?: boolean;
    header?: React.ReactNode;
}
declare const Header: ({ description, title, titleAs, isSection, labelClose, actions, dataA11ySection, onClose, header, expandable, expanded, }: Props) => React.JSX.Element;
export default Header;
