declare const cachePlaceList: readonly ["none", "hard", "softLocal", "softWide"]; export declare type SICachePlace = typeof cachePlaceList[number]; export declare const isSICachePlace: (t: any) => t is "none" | "hard" | "softLocal" | "softWide"; export {};