import { Manifest } from "@pslb/rollup-plugin-dll"; import { Config } from "./types"; /** * Sequentially build up an array of manifests, where each new manifest is fed into the next build where needed. * For local libs this is required. * For remote packages we just need to pull the manifest down. * * @param dir * @param config * @returns */ export declare const prepareManifests: (dir: string, config: Config) => Promise;