import { SchedulerLazyLoadingPlugin } from "../../internals/plugins/SchedulerLazyLoadingPlugin.js"; import { EventTimelinePremiumState, EventTimelinePremiumParameters } from "../EventTimelinePremiumStore.types.js"; import type { EventTimelinePremiumStore } from "../EventTimelinePremiumStore.js"; /** * The first fetch is gated on `state.hasInitialized`: without it, the selector * would return the same key at construction and at mount (defaults are enough * to compute it), so `registerStoreEffect` would never fire its first transition * and the initial fetch would never trigger. */ export declare class EventTimelinePremiumLazyLoadingPlugin extends SchedulerLazyLoadingPlugin> { constructor(store: EventTimelinePremiumStore); }