/** *Temporary workaround for implementing missing Unidriver methods in React/DOM only. * * @param {UniDriver} base */ export function ReactBase(base: UniDriver): { _private: { mouseDown: (eventData: any) => Promise; mouseOver: (eventData: any) => Promise; mouseOut: (eventData: any) => Promise; compositionStart: () => Promise; compositionEnd: () => Promise; }; wheel: (eventData: any) => Promise; keyUp: (eventData: any) => Promise; keyDown: (eventData: any) => Promise; mouseEnter: (eventData: any) => Promise; mouseLeave: (eventData: any) => Promise; beforeInput: (eventData: any) => Promise; _DEPRECATED_getClassList: () => Promise; /** @returns {array} array of children unidrivers */ _DEPRECATED_children: () => array; focus: () => Promise; blur: () => Promise; isFocus: () => Promise; paste: () => Promise; select: (selectedIndex: any) => Promise; drop: (eventData: any) => Promise; }; export namespace ReactBase { function clickBody(): any; function clickDocument(): any; } //# sourceMappingURL=ReactBase.d.ts.map