import { StorageInterface } from "../../types.js"; export default class Storage implements StorageInterface { private _pkc; private _store; constructor(pkc: Storage["_pkc"]); toJSON(): undefined; init(): Promise; getItem(key: string): Promise; setItem(key: string, value: any): Promise; removeItem(key: string | string[]): Promise; clear(): Promise; destroy(): Promise; }