UNPKG

@grafana/ui

Version:

Grafana Components Library

12 lines (11 loc) 410 B
/// <reference types="react" /> import { OptionProps } from 'react-select/lib/components/Option'; export interface ExtendedOptionProps extends OptionProps<any> { data: { description?: string; imgUrl?: string; }; } export declare const SelectOption: (props: ExtendedOptionProps) => JSX.Element; export declare const SingleValue: (props: any) => JSX.Element; export default SelectOption;