///
import { Base, Id } from '../BaseEntity';
export declare class PrintableModel extends Base {
name: string;
fileName: string;
fileId: Id;
modelVolume: number;
categoryId: Id;
fixStatus: string;
creatorId: Id;
constructor(props?: Partial);
}
export declare class Dir extends Base {
name: string;
path: string;
parentId: Id;
creatorId: Id;
subCategoryList: Dir[];
printableModels: PrintableModel[];
constructor(props?: Partial);
}
export declare class TreeData {
value: Id;
title: React.ReactNode;
children?: TreeData[];
}