import type { Component } from 'vue'; import type { ScrollToOptions } from '@/composables/useVirtualScroll'; declare const __VLS_export: | string | number | symbol)>(__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: import("vue").PublicProps & __VLS_PrettifyLocal<{ items: ListItem[]; estimateSize: string | number | ((index: number) => number); wrapperTag?: string | Component; itemTag?: string | Component; itemProps?: Record | ((index: number) => Record); startSpacerProps?: Record; endSpacerProps?: Record; startSpacerTag?: string | Component; endSpacerTag?: string | Component; overscan?: string | number; getItemKey?: (index: number) => number | string; horizontal?: boolean; focusable?: boolean; }> & (typeof globalThis extends { __VLS_PROPS_FALLBACK: infer P; } ? P : {}); expose: (exposed: import("vue").ShallowUnwrapRef<{ virtualizer: globalThis.Ref, import("@tanstack/vue-virtual").Virtualizer>; getElementAtIndex: (index: number) => ListItem; scrollToIndex: (index: number, options?: ScrollToOptions) => void; scrollToOffset: (offset: number, options?: ScrollToOptions) => void; measure: () => void; }>) => void; attrs: any; slots: { default?: (props: { item: ListItem; start: number; end: number; index: number; virtualIndex: number; scrollToIndex: (index: number, options?: ScrollToOptions) => void; scrollToOffset: (offset: number, options?: ScrollToOptions) => void; virtualizer: import("@tanstack/vue-virtual").Virtualizer; }) => any; }; emit: {}; }>) => import("vue").VNode & { __ctx?: Awaited; }; declare const _default: typeof __VLS_export; export default _default; type __VLS_PrettifyLocal = (T extends any ? { [K in keyof T]: T[K]; } : { [K in keyof T as K]: T[K]; }) & {};