import { FieldReducerInfo } from '@grafana/data'; export interface Props { placeholder?: string; onChange: (stats: string[]) => void; stats: string[]; allowMultiple?: boolean; defaultStat?: string; className?: string; width?: number; menuPlacement?: 'auto' | 'bottom' | 'top'; inputId?: string; filterOptions?: (ext: FieldReducerInfo) => boolean; } export declare const StatsPicker: import("react").NamedExoticComponent;