import React from 'react'; export declare function ExpandToggleButton({ isExpanded, onExpandableItemToggle, expandButtonLabel, collapseButtonLabel, customIcon, className, disableFocusHighlight }: { isExpanded?: boolean; onExpandableItemToggle?: () => void; expandButtonLabel?: string; collapseButtonLabel?: string; customIcon?: React.ReactNode; className?: string; disableFocusHighlight?: boolean; }): JSX.Element;