UNPKG

@grafana/ui

Version:
15 lines (14 loc) 483 B
import { TimeZone, InternalTimeZones } from '@grafana/data'; export interface Props { onChange: (timeZone?: TimeZone) => void; value?: TimeZone; width?: number; autoFocus?: boolean; onBlur?: () => void; includeInternal?: boolean | InternalTimeZones[]; disabled?: boolean; inputId?: string; menuShouldPortal?: boolean; openMenuOnFocus?: boolean; } export declare const TimeZonePicker: (props: Props) => import("react/jsx-runtime").JSX.Element;