import type { SectionElement, Item } from '../components';
export interface NextSection extends Item {
firstItem?: Item;
}
export declare function withNextSectionFirstItem(section: SectionElement, index: number, allSections: SectionElement[]): SectionElement;