/** Default values provider for typeahead */
export declare class TypeaheadConfig {
    /** sets use adaptive position */
    adaptivePosition: boolean;
    /** used to hide results on blur */
    hideResultsOnBlur: boolean;
    /** used to choose the first item in typeahead container */
    selectFirstItem: boolean;
    /** used to choose set minimal no of characters that needs to
     * be entered before typeahead kicks-in
     */
    minLength: number;
}
