import type List from "../../models/VirtualScroller";
import type { Event } from "../../constants";
import type { ReactNode } from "react";
type SubscriptionProps = {
    model: List;
    children: () => ReactNode;
    events?: Event[];
};
declare const Subscription: (props: SubscriptionProps) => ReactNode;
export default Subscription;
//# sourceMappingURL=index.d.ts.map