import React from "react";
import type * as Common from "../../../common/types";
interface Props extends Common.Globals {
    readonly children: React.ReactNode;
    readonly expanded: boolean;
    readonly expandable: boolean;
    readonly expandOnTileClick?: boolean;
    readonly onExpand?: Common.Callback;
    readonly actions?: React.ReactNode;
    readonly ariaControls?: string;
}
declare const AccordionSectionHeader: ({ children, actions, expanded, expandOnTileClick, onExpand, expandable, dataTest, ariaControls, }: Props) => React.JSX.Element;
export default AccordionSectionHeader;
//# sourceMappingURL=SectionHeader.d.ts.map