import type { ComboboxEvent } from "../component";
export interface Input {
}
class {
    declare state: {
    value: string;
};
    onCreate(): void { return 1 as any; }
    handleClear(): void { return 1 as any; }
    handleSelect(e: ComboboxEvent): void { return 1 as any; }
}
