/** * Same as `new Date(...)`, * but avoids converting date's time zone to the environment (e.g. browser's) time zone, * which happens whenever you're using `new Date` to build a date from a string. */ export declare function parseDateWithoutTimeZone(timestamp: string): Date;