import { ExpanderHierarchyCommonProps } from '../ExpanderHierarchy'; interface ExpanderButtonProps extends ExpanderHierarchyCommonProps { expanded: boolean; onExpand?: (isExpanded: boolean) => void; children: string; testId?: string; } declare const ExpanderButton: React.FC; export default ExpanderButton;