import React from 'react'; import { Section } from './CollectionSectionHeader.types'; export interface CollectionSectionHeaderActionBarProps { sectionId: string; sectionIndex: number; section: Section & { collapsed?: boolean; }; biComponentType: string; collapsible?: boolean; onToggleCollapse?: (sectionId: string) => void; } export declare const CollectionSectionHeaderActionBar: ({ sectionId, sectionIndex, section, biComponentType, collapsible, onToggleCollapse, }: CollectionSectionHeaderActionBarProps) => React.JSX.Element; //# sourceMappingURL=CollectionSectionHeaderActionBar.d.ts.map