import { TimeZone } from './TimeZone.js'; export type ZoneIdString = 'Europe/Amsterdam' | 'UTC' | 'America/New_York'; declare const BRAND: unique symbol; export declare class ZoneId extends TimeZone { private readonly zoneId; private [BRAND]; private constructor(); /** *
Returns the browser's current time zone. Gets this information from the browser's Internationalization API. *
*In browsers that do not expose this information, a * best-effort guess is made. That guess is performed under the hood by {@code moment.tz.guess()} from * {@code moment-timezone}, so read more about it in * that function's * documentation.
*/ static browser(): ZoneId; static of(zoneId: ZoneIdString | string): ZoneId; static equal(zoneId1: ZoneId | null | undefined, zoneId2: ZoneId | null | undefined, ...otherDaysOfWeek: (ZoneId | null | undefined)[]): boolean; equals(zoneId: ZoneId | null | undefined): boolean; toString(): ZoneIdString; static isInstance(value: any): value is ZoneId; } export {};