export declare class StorageKey {
    private readonly value;
    private readonly isRawKey;
    constructor(value: string, isRawKey?: boolean);
    toString(): string;
    toJSON(): string;
    valueOf(): string;
    isUnparseable(): boolean;
}
export type StorageKeyType = string | StorageKey;
