import { StorageElementType } from '../../types/StorageElementType.cjs';

interface CacheableStoreItem {
    key: string;
    value: StorageElementType;
}
/**
 * Interface exported storage data
 */
type ExportedStorage = CacheableStoreItem[] | {
    [key: string]: StorageElementType;
};

export type { CacheableStoreItem, ExportedStorage as default };
