/** * Checks if a string is a valid ISO 8601 date format * * @param dateString - The string to check * @returns True if the string is a valid ISO 8601 date, false otherwise */ export declare function isValidISODate(dateString: string): boolean;