/** * Returns true if the value is a ISO8601 Date component string * @description https://datatracker.ietf.org/doc/html/rfc3339 * @example `2020-12-12` */ export declare function IsDate(value: string): boolean;