import { FileInfoBase } from '../../../generated/storage/domain/value-object/file-info.base'; interface FileInfoCreateProps { name: string; path: string; size: number; lastModified: Date; isDirectory: boolean; } export declare class FileInfo extends FileInfoBase { private constructor(); static create(props: FileInfoCreateProps): FileInfo; } export {}; //# sourceMappingURL=file-info.vo.d.ts.map