import * as t from "io-ts"; /** * Accepts short formats (ie. "2018-10-13") * with or without time and timezone parts. */ export declare const DateFromString: t.Type; export declare type DateFromString = t.TypeOf; /** * Accepts only full ISO8601 format with UTC (Z) timezone * * ie. "2018-10-13T00:00:00.000Z" */ export declare const UTCISODateFromString: t.Type; export declare type UTCISODateFromString = t.TypeOf;