declare function setLocal(key: string, value: any, time: number): void; declare function getLocal(key: string): any; declare const store: { setLocal: typeof setLocal; getLocal: typeof getLocal; }; export default store;