import { SelectGroupOption, SelectBaseOption } from '../../select/src/interface'; export declare type AutoCompleteOption = SelectBaseOption; export interface AutoCompleteGroupOption extends Omit { children: AutoCompleteOptions; } export declare type AutoCompleteOptions = Array; export declare type OnUpdateValue = (value: string & (string | null)) => void; export declare type OnUpdateImpl = (value: string | null) => void; export declare type OnSelect = (value: string | number) => void;