/** * Checks if the string is a valid ISO 8601 date. * If given value is not a string, then it returns false. * * @param value The value being checked. * @returns True if the string a valid ISO 8601, false otherwise. */ export declare function isISO8601(value: string): boolean;