import { HTMLWidget } from "@hpcc-js/common";
import "../src/AutoCompleteText.css";
export declare class AutoCompleteText extends HTMLWidget {
_span: any;
_prompt: any;
_input: any;
_prevMinCharsText: any;
_autoComplete: any;
constructor();
autoCompleteTextData(): any;
enter(domNode: any, element: any): void;
update(domNode: any, element: any): void;
exit(domNode: any, element: any): void;
click(row: any, column: any, selected: any): void;
}
export interface AutoCompleteText {
label(): string;
label(_: string): this;
label_exists(): boolean;
textboxWidth(): number;
textboxWidth(_: number): this;
textboxWidth_exists(): boolean;
placeholder(): string;
placeholder(_: string): this;
placeholder_exists(): boolean;
valueColumn(): string;
valueColumn(_: string): this;
valueColumn_exists(): boolean;
textColumn(): string;
textColumn(_: string): this;
textColumn_exists(): boolean;
minCharsText(): number;
minCharsText(_: number): this;
minCharsText_exists(): boolean;
}