/**
 * Return the earliest (minimum) of the given UTC datetime values.
 *
 * - Filters invalid values before finding minimum using Temporal.Instant.compare.
 * - Returns null if array is empty or has no valid values.
 *
 * @param utcDateTimes Array of ISO datetime strings (e.g. "2024-03-10T12:00:00Z")
 * @returns The earliest UTC datetime string, or null on invalid input
 *
 * @example minUtc(["2024-03-10T12:00:00Z", "2024-03-15T12:00:00Z", "2024-03-12T12:00:00Z"]) // "2024-03-10T12:00:00Z"
 * @example minUtc(["invalid", "2024-03-15T12:00:00Z"]) // "2024-03-15T12:00:00Z"
 * @example minUtc(["invalid", "also invalid"]) // null
 * @example minUtc([]) // null
 */
export declare function minUtc(utcDateTimes: string[]): string | null;
