import { AgencyConfig } from "../config.js"; export type PackTarget = "node"; export type PackFormat = "esm" | "cjs"; export type PackOptions = { config: AgencyConfig; inputFile: string; outputFile: string; target: PackTarget; }; export declare function pack(opts: PackOptions): Promise;