import { File } from '../../memi'; import { D3FormatAttr } from './D3FormatAttr'; import { UspAttr } from './UspAttr'; export declare type PrintableFileFormat = 'CLI' | 'USP' | 'UCF' | 'MAGICS'; export declare type PartFileFormat = PrintableFileFormat; export declare class UspFile extends File { } export declare type PartFile = UspFile; export declare class D3ModelFile extends File { constructor(data: Partial); }