/** * Converts a date to a specific timezone. * * @param dateValue - The date to convert. * @param timeZone - TZ DB Format. * @returns A date object in the given timezone. */ declare function toTimeZone(dateValue: string | Date | number, timeZone: string): Date; export default toTimeZone; export { }