import type { FileInfo } from './file-info';
export interface CloudStorageContent {
    'next'?: string | null;
    'content': Array<FileInfo>;
}
