import React from 'react'; export declare class Suggestion { type: string; typeahead: string; value: string; constructor(type: string, typeahead: string, value: string); } export declare class Suggestions { literals: Suggestion[]; labelNames: Suggestion[]; labelValues: Suggestion[]; constructor(); } interface Props { suggestions: Suggestions; applySuggestion: (suggestion: Suggestion) => void; inputRef: React.RefObject; runQuery: () => void; focusedInput: boolean; isLabelNamesLoading: boolean; isLabelValuesLoading: boolean; shouldTrimPrefix: boolean; refetchLabelValues: () => Promise; refetchLabelNames: () => Promise; } declare const SuggestionsList: ({ suggestions, applySuggestion, inputRef, runQuery, focusedInput, isLabelNamesLoading, isLabelValuesLoading, shouldTrimPrefix, refetchLabelValues, refetchLabelNames, }: Props) => JSX.Element; export default SuggestionsList; //# sourceMappingURL=SuggestionsList.d.ts.map