import { type ItemElement, type ItemKey, type SectionElement } from './itemUtils'; export interface UseStaticItemInitialScrollPositionOptions { itemHeight: number; items: (ItemElement | SectionElement)[]; selectedKey?: ItemKey | null; topOffset: number; } export declare function useStaticItemInitialScrollPosition({ itemHeight, selectedKey, topOffset, items, }: UseStaticItemInitialScrollPositionOptions): () => Promise; export default useStaticItemInitialScrollPosition; //# sourceMappingURL=useStaticItemInitialScrollPosition.d.ts.map