import type * as types from "./types"; import type { FormElementPropertyConstraints, PropertyConstraintsWithDefault, PropertyConstraintsWithMinimum } from "../utils"; export interface AutoComplete extends types.ElementBase, types.EditableElement, types.ElementWithItems, types.ElementWithStringLabel, types.ElementWithRequire { /** Indicates the current value. */ readonly value?: any; } export type Item = types.ElementItemBase; interface AutoCompletePropertyConstraints extends FormElementPropertyConstraints { delay: PropertyConstraintsWithDefault & PropertyConstraintsWithMinimum; minLength: PropertyConstraintsWithDefault & PropertyConstraintsWithMinimum; } export declare const autoCompletePropertyConstraints: AutoCompletePropertyConstraints; export {};