import { type SyntheticEvent } from 'react'; import { type DataSourcePluginOptionsEditorProps, type SelectableValue } from '@grafana/data'; import { type PromOptions } from '../types'; type Props = Pick, 'options' | 'onOptionsChange'> & { /** Hide the Prometheus type and version dropdowns */ hidePrometheusTypeVersion?: boolean; /** Hide the Exemplars settings section */ hideExemplars?: boolean; }; export declare const PromSettings: (props: Props) => import("react/jsx-runtime").JSX.Element; export declare const getValueFromEventItem: (eventItem: SyntheticEvent | SelectableValue) => any; export {};