/** * Takes a TypeScript definition source and returns an equivalent AST with all types enumerated inside a json. * @param typescriptDefinitionSource - type definition source. e.g. my-class.d.ts */ export declare const getAstJSON: (typescriptDefinitionSource: string) => string;