import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; export declare const importsMapStorageFile: {}; /** * File or folder information. */ export declare class StorageFile implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * True if it is a folder. */ isFolder: boolean; /** * File or folder last modified DateTime. */ modifiedDate: Date; /** * File or folder name. */ name: string; /** * File or folder path. */ path: string; /** * File or folder size. */ size: number; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }