export declare class UVAdapter { readonly: boolean; constructor(readonly: boolean); get(_key: string, _defaultValue: T | undefined): T | undefined; set(_key: string, _value: T): void; dispose(): void; }