export declare abstract class StorageItem {
    abstract readonly id: string;
    readonly storageTimestamp: Date;
}
