export interface InstantItemsCache { expiresAt: number; isLoading: boolean; isActive: boolean; searchUid: string; totalCountFiltered: number; duration: number; } export type InstantItemsState = Record; export declare function hasExpired(cached: InstantItemsCache | undefined): boolean | 0;