import React from 'react'; interface Props { selected: boolean; value: string; availableOptions?: Record; showCounts: boolean; } export declare const EntityAutocompletePickerOption: React.MemoExoticComponent<(props: Props) => React.JSX.Element>; export {};