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

/**
 * Interface exported storage data
 */
interface ExportedStorage {
    [key: string]: StorageElementType;
}

export type { ExportedStorage as default };
