import type { TextboxEvent } from "../component-browser";
export interface Input {
}
class {
    declare state: {
    value: string;
};
    onCreate(): void { return 1 as any; }
    change({ value, originalEvent }: {
    value: string;
    originalEvent: Event;
}): void { return 1 as any; }
    clear(e: TextboxEvent): void { return 1 as any; }
}
