import React from 'react';
export interface IVeltAutocompletePanelProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    type?: 'contact' | 'generic';
    hideInput?: boolean;
    placeholder?: string;
    metadata?: any;
    showAtHere?: boolean;
    multiSelect?: boolean;
    selectedFirstOrdering?: boolean;
    readOnly?: boolean;
    inline?: boolean;
    enableOnFocus?: boolean;
    position?: 'above' | 'below' | 'auto' | string;
    excludeContacts?: any;
    initialSelection?: any;
    contacts?: any;
    defaultCondition?: boolean;
}
declare const VeltAutocompletePanel: React.FC<IVeltAutocompletePanelProps>;
export default VeltAutocompletePanel;
