import type { BundleSnapshot } from '../bundle-state.js';
interface LogBundleProcessPlanOptions {
    debug: (format: string, ...args: unknown[]) => void;
    snapshot: BundleSnapshot;
    useIncrementalMode: boolean;
    iteration: number;
}
export declare function logBundleProcessPlan(options: LogBundleProcessPlanOptions): void;
export {};
