import type { BaseSyntheticEvent } from 'react';
export type PanelHeaderProps = {
    isExpandable?: boolean;
    expanded?: boolean;
    disabled?: boolean;
    toggle?: (e: BaseSyntheticEvent) => void;
};
export declare const PanelHeader: import("styled-components").StyledComponent<"div", any, PanelHeaderProps, never>;
