#!/usr/bin/env tsx import '../../infra/registerTsconfigPaths'; /** * .what = executes the plan command to generate an infrastructure change plan * .why = provides CLI interface for planning infrastructure changes * .note = requires wish file with getResources() and getProviders() exports */ export declare const executePlanCommand: ({ wishFilePath, planFilePath, snapFilePath, passthroughArgs, }: { wishFilePath: string; planFilePath: string; snapFilePath: string | null; passthroughArgs?: string[]; }) => Promise;