import { FileTypeUnion } from '@airgram-dev/core'; /** Contains the storage usage statistics for a specific file type */ export declare class StorageStatisticsByFileTypeBaseModel { _: 'storageStatisticsByFileType'; /** File type */ fileType: FileTypeUnion; /** Total size of the files */ size: number; /** Total number of files */ count: number; }