import { AllowNew, Option } from '../types';
interface Props {
    allowNew: AllowNew;
    highlightOnlyResult: boolean;
    results: Option[];
}
declare function getIsOnlyResult(props: Props): boolean;
export default getIsOnlyResult;
