/** * Filters a versions array to return only versions between fromVersion (exclusive) * and toVersion (inclusive). * * Returns an empty array if either version is not found or fromIndex >= toIndex. */ export declare function filterVersionRange(versions: string[], fromVersion: string, toVersion: string): string[];