/** * Append "Z" suffix to a date string if it has no timezone indicator, ensuring it is parsed as UTC. */ declare const ensureUtc: (date: string) => string; export default ensureUtc;