import { SymLinks, Target } from './types'; import { Stripe } from './packer'; import { CompressType } from './compress_type'; interface ProducerOptions { backpack: { entrypoint: string; stripes: Stripe[]; prelude: string; }; bakes: string[]; slash: string; target: Target; symLinks: SymLinks; doCompress: CompressType; nativeBuild: boolean; fallbackToSource?: boolean; } export default function producer({ backpack, bakes, slash, target, symLinks, doCompress, nativeBuild, fallbackToSource, }: ProducerOptions): Promise; export {}; //# sourceMappingURL=producer.d.ts.map