import { Driver } from "./Driver"; export declare class ScopedStorage { private driver; private database; private scope; constructor(driver: Driver); load(scope: string): Promise; flush(): Promise; has(key: string): boolean; set(key: string, value: T): void; get(key: string, _default?: T): T; remove(key: string): void; clear(): void; }