import { APIFactory } from '@statoscope/extensions'; import { Format, Package, Instance } from './generator'; export type API = { getPackage: (compilationId: string | null, packageName: string) => Package | null; getInstance: (compilationId: string | null, packageName: string, instancePath: string) => Instance | null; }; declare const makeAPI: APIFactory; export default makeAPI;