import { TerraformTargetVersions } from "@cdktn/commons"; /** * Verifies that the installed Terraform-compatible binary satisfies the * project's declared `targetVersions` (cdktf.json). Only invoked when the * project opts in via `validateInstalledBinary: true`, by commands that are * about to execute the binary anyway. * * Declared targets state the project's supported range; this check is the * explicit step that proves the local binary actually falls inside it. */ export declare function checkInstalledBinaryAgainstTargets(versionOutput: string, declaredTargets: TerraformTargetVersions | undefined, binaryName: string): string[]; //# sourceMappingURL=installed-binary-check.d.ts.map