import { Storage } from "./env.models"; export declare class NullStorage implements Storage { all>(): Promise; get(key: string): Promise; set(key: string, value: string): Promise; has(key: string): Promise; forget(key: string): Promise; flush(): Promise; count(): Promise; snapshot(): Promise; restore(): Promise; }