import { VNodeRegister } from '../vdom'; import { VElement } from '../VElement'; import { VAttribute } from './VAttribute'; declare const enum ElementType { Input = 0, Select = 1 } export declare class AtValue extends VAttribute { static matcher: string; stateName: string; type: ElementType; /** use any to prevent import circle */ view: any; init(attrName: string, attrValue: string, vElement: VElement, register: VNodeRegister): boolean; onElementCreate(element: HTMLElement): void; createStateDependencies(): { [x: string]: {}; }; onDestroy(): void; } export {};