import * as ts from 'typescript'; export declare function getRootPath(): string; export declare function getPkgVersion(): string; export declare function printPkgVersion(): void; export declare const isObject: (arg: any) => boolean; export declare const isArray: (arg: any) => boolean; export declare const sleep: (timeout: any) => Promise; export declare const getAtiConfigs: (defaultAtiConfigs?: {}) => any; export declare const removeIndexSignature: (members: any) => any; export declare const removeIndexSignatureMiddleWare: (sourceFile: ts.SourceFile) => void; export declare const parseTsCode: (code: string, middleWare?: ((x: any) => any) | undefined) => string;