import { IMaterialScanModel, DSLType } from '../types'; export interface IParseArgs extends IMaterialScanModel { accesser?: 'online' | 'local'; dslType?: DSLType; npmClient?: string; workDir: string; moduleDir: string; typingsFileAbsolutePath?: string; mainFileAbsolutePath: string; moduleFileAbsolutePath?: string; } export declare function isTSLike(str: any): any; declare const _default: (args: IParseArgs) => Promise; export default _default;