import { OaModel } from './oa-model.js'; import { Options } from './options.js'; export declare class OaImport { refName: string; typeName: string; qualifiedName: string; isEnum: boolean; useAlias: boolean; file: string; namespace?: string; fileName: string; fromModel(model: OaModel): OaImport; fromRef(options: Options, refName: string): OaImport; fromImport(source: OaImport): OaImport; getRelativePath(sourceNamespaceSplit: string[], pathToModels: string): string; private setRelativePath; }