import api from '../../files/vscripts/api'; import apiTypes from '../../files/vscripts/api-types'; import enums from '../../files/vscripts/enums'; export { api, enums }; export type AllDataType = api.Declaration | enums.Declaration; export declare const allData: AllDataType[]; export declare const findTypeByName: (name: string) => AllDataType | apiTypes.Declaration | undefined; export declare const getFuncDeepTypes: (func: api.FunctionType) => string[]; export declare function getDeepTypes(types: api.Type[]): string[];