import type { PackageFileFormat } from "../packaging/fileFormat"; import type { BuildContext } from "./build"; export type Packages = readonly PackageFileFormat[]; export declare function doPackaging(bCtx: BuildContext): Packages | undefined;