import { SICachePlace } from '../../../'; export interface SICacheOptions { fromCache?: SICachePlace; toCache?: SICachePlace; expiration?: number; autoRefresh?: boolean; } export declare const isSICacheOptions: (t: unknown) => t is SICacheOptions;