import * as React from 'react'; import { AssistedSearchProps } from '../AssistedSearch'; import { GetValues } from '../types'; export interface SingleValueProps extends AssistedSearchProps { /** * A callback to return the values for autocomplete. */ getValues?: GetValues; } /** * A convenience component to use in a more streamlined way, locking the value to the prop values as you * would an component. * * @extends React.Component */ export default class SingleValue extends React.Component { private readonly _store; constructor(props: SingleValueProps); componentWillReceiveProps(nextProps: SingleValueProps): void; render(): JSX.Element; }