@grafana/ui
Version:
Grafana Components Library
5 lines (4 loc) • 325 B
TypeScript
import { GroupBase, SingleValueProps } from 'react-select';
import { SelectableValue } from '@grafana/data';
export type Props<T> = SingleValueProps<SelectableValue<T>, boolean, GroupBase<SelectableValue<T>>>;
export declare const SingleValue: <T extends unknown>(props: Props<T>) => import("react/jsx-runtime").JSX.Element;