export interface PreviewCheck {
    inProgress: boolean;
    attempted: number;
}
export declare function getPreviewTracker(wait?: number): {
    tracked: Record<string, PreviewCheck>;
    shouldLoad: (k: string) => boolean;
    newAttempt: (k: string) => void;
    finished: (k: string) => void;
};
//# sourceMappingURL=subscriptionTracking.d.ts.map