/**
 * Checks if the string is a date according to RFC3339
 * https://datatracker.ietf.org/doc/html/rfc3339#section-5.6
 */
export default function isDateString(str: string): boolean;
