#!/usr/bin/env tsx import '../../infra/registerTsconfigPaths'; /** * .what = executes the apply command to apply infrastructure changes * .why = provides CLI interface for applying infrastructure changes * .note = supports two modes: * - standard: load plan from file, validate staleness, apply * - yolo: plan from wish directly, skip validation, apply immediately */ export declare const executeApplyCommand: (input: { planFilePath?: string; wishFilePath?: string; }) => Promise;