/** * Parses a string value in the given format to its respective {@link Date} instance. The format can * be provided using the tokens "YYYY" for the year, "MM" for the month, "DD" for the date, "HH" for * hours, "mm" for minutes, "ss" for seconds and "SSS" for milliseconds * * @experimental */ export declare function parseDate(str: string, format?: string, base?: Date): Date;