UNPKG

@grafana/ui

Version:
15 lines (14 loc) 476 B
import React, { PropsWithChildren } from 'react'; import { SelectableValue } from '@grafana/data'; interface Props { isFocused: boolean; isSelected: boolean; innerProps: any; data: SelectableZone; } export interface SelectableZone extends SelectableValue<string> { searchIndex: string; } export declare const WideTimeZoneOption: React.FC<PropsWithChildren<Props>>; export declare const CompactTimeZoneOption: React.FC<PropsWithChildren<Props>>; export {};