import type { ClusterVariant, FileResult } from './types.js'; /** * Print a summary table of all file operations. * * Each file is displayed with its action label, relative path, and size. * In dry-run mode, actions are prefixed with "Would" (e.g. "Would create"). * A totals line follows showing counts of each action type. * * @param results - Array of file results from `writeFiles()`. * @param dryRun - Whether this was a dry-run (preview) invocation. * @param variant - The selected cluster variant. */ export declare function printSummary(results: FileResult[], dryRun: boolean, variant: ClusterVariant): void; /** * Print actionable next steps after a successful initialization. * * Displayed as a styled note box via `@clack/prompts`. */ export declare function printNextSteps(): void; //# sourceMappingURL=summary.d.ts.map