import React, { CSSProperties, PropsWithChildren } from 'react'; import { IPointerMoveEvent } from './model'; interface IPointerHubProps { onChange?: (event: IPointerMoveEvent) => void; className?: string; style?: CSSProperties; } declare function PointerHub(props: PropsWithChildren): JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;