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 onExpand?: Common.Callback;
    readonly actions?: React.ReactNode;
}
declare const AccordionSectionHeader: ({ children, actions, expanded, onExpand, expandable, dataTest, }: Props) => React.JSX.Element;
export default AccordionSectionHeader;
