/** * Extracts the date-style version (e.g., 2021.01, 2024.05.12) from a version string. * @param {string} versionString - The full version string. * @returns {string|null} The date-style version, or null if not found. */ export function extractDateVersion(versionString: string): string | null;