import { SectionHeaderProps } from '@wix/design-system'; import React from 'react'; import { Section } from './CollectionSectionHeader.types'; export interface CollectionSectionHeaderProps extends Pick { sectionId: string; sectionIndex: number; section: Section & { count: number; hasMore?: boolean; items?: T[]; collapsed?: boolean; }; biComponentType: string; collapsible?: boolean; onToggleCollapse?: (sectionId: string) => void; } export declare const CollectionSectionHeader: ({ sectionId, sectionIndex, section, skin, dataHook, biComponentType, collapsible, onToggleCollapse, }: CollectionSectionHeaderProps) => React.JSX.Element; //# sourceMappingURL=CollectionSectionHeader.d.ts.map