/** * Parses date from string * @param input string to be parsed * @throws {Error} in case of invalid Date * @returns Date parsed from input */ export declare function parseDate(input: string): Date;