import { SICachePlace } from '../../../'; export interface SICacheRead { data: T; origin?: SICachePlace; updatedAt: number; } export declare const isSICacheRead: (t: any) => t is SICacheRead;