import type { NeoListMethods, NeoListProps } from './neo-list.model.js';
declare const NeoList: import("svelte").Component<NeoListProps, {
    scrollToTop: NeoListMethods["scrollToTop"];
    scrollToBottom: NeoListMethods["scrollToBottom"];
}, "ref" | "filter" | "sort" | "selected" | "highlight">;
type NeoList = ReturnType<typeof NeoList>;
export default NeoList;
