import type { PlanItem } from '../schemas/plan'; /** * Renders the generated asset plan (array of items) into a string format for console output. * Uses console.table for structured output. * @param plan - The structured asset plan as an array of PlanItems. */ export declare function renderPlanTable(plan: PlanItem[]): void;