import type { SectionData, CombinedOptionsType, SelectOptionType } from './types'; export declare const isSections: >(options: CombinedOptionsType) => options is SectionData[]; export declare const toSections: >(options: CombinedOptionsType) => SectionData[]; export declare const toFlatOptions: >(options: CombinedOptionsType) => SelectOptionType[]; type ScrollParams = { itemIndex: number; sectionIndex: number; }; export declare const getScrollParams: >(value: V, sections: SectionData[]) => ScrollParams; export {};