import { DropdownPropertyConfiguration, DropdownPropertyConfigurationBuilder } from './dropdown-property-configuration'; export interface AutocompletePropertyConfiguration extends DropdownPropertyConfiguration { minSearchLength(minSearchLength: number): this; showDropdown(show?: boolean): this; delay(delay: number): this; forceSelection(forceSelection: boolean): this; } export declare class AutocompletePropertyConfigurationBuilder extends DropdownPropertyConfigurationBuilder implements AutocompletePropertyConfiguration { minSearchLength(minSearchLength: number): this; showDropdown(show?: boolean): this; delay(delay: number): this; forceSelection(forceSelection: boolean): this; }