import React, { FC } from 'react'; import { ItemProps } from '../Item'; export interface SectionProps { items: ItemProps[]; icon?: React.ReactNode; title?: string; fill?: boolean; rollup?: { after: number; view: string; hide: string; activePath: string; }; action?: { icon: React.ReactNode; onClick(): void; }; separator?: boolean; } export declare const Section: FC;