// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

export {};

/**
 * Minimal Intl augmentation for timezone support.
 * Keep this file additive so it can merge with TypeScript's built-in Intl types.
 */
declare global {
  namespace Intl {
    function supportedValuesOf(key: "timeZone"): string[];
  }
}
