/** * Parse an Amp version string from CLI output. */ export declare function parseAmpVersionFromOutput(output: string): string | null; /** * Extract the timestamp segment from an Amp CLI version. */ export declare function extractAmpVersionTimestamp(version: string): number | null; /** * Checks whether an installed version is compatible with a minimum required version. * * Versions are timestamp-based. When parsing fails (or for dev builds like 0.0.0-dev), * this returns true to avoid blocking environments that ship non-release labels. */ export declare function isAmpVersionAtLeast(version: string, minimumVersion: string): boolean; /** * Reads the SDK's minimum compatible Amp CLI version from package metadata. */ export declare function getMinimumCompatibleAmpVersion(): string | null; //# sourceMappingURL=version-compatibility.d.ts.map