import { SvelteComponent } from "svelte"; export type VirtualListProps = { listHeight: number; itemCount: number; itemHeight: number; ItemComponent: any; overscanCount?: number; items: any[]; }; declare const __propDef: { props: { items: VirtualListProps["items"]; itemHeight: VirtualListProps["itemHeight"]; overscanCount?: VirtualListProps["overscanCount"]; listHeight: VirtualListProps["listHeight"]; ItemComponent: VirtualListProps["ItemComponent"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; exports?: {} | undefined; bindings?: string | undefined; }; type VirtualListProps_ = typeof __propDef.props; export type VirtualListEvents = typeof __propDef.events; export type VirtualListSlots = typeof __propDef.slots; export default class VirtualList extends SvelteComponent { } export {};