interface Props { children?: import('svelte').Snippet; sentinel?: import('svelte').Snippet<[{ loading: boolean; done: boolean; }]>; loading?: boolean; hasMore?: boolean; rootMargin?: string; threshold?: number; disabled?: boolean; class?: string; style?: string; onLoad?: () => void | Promise; } declare const InfiniteScroll: import("svelte").Component; type InfiniteScroll = ReturnType; export default InfiniteScroll;