import * as React from 'react'; import { GetFacets, GetValues } from '../types'; import AssistedSearchStore from '../stores/AssistedSearchStore'; import { AssistedSearchProps } from '../AssistedSearch'; export interface FacetedValueProps extends AssistedSearchProps { /** A callback to return the values for autocomplete */ getValues?: GetValues; /** * A callback to return the facet (filter) suggestions for autocomplete, can also be used to return * standalone non-facet values */ getFacets?: GetFacets; } /** * A convenience component for the faceted-type variant of , with entries/onChange/getValues/getFacets * available as direct props. * * @extends React.Component */ export default class FacetedValue extends React.Component { _store: AssistedSearchStore; constructor(props: FacetedValueProps); render(): JSX.Element; }