import { CSSProperties, SFC } from 'react';
import { Point2D } from './hooks/usePan';
interface Props {
    className?: string;
    style?: CSSProperties;
    defaultValue?: Point2D;
    value?: Point2D;
    onChange?(delta: Point2D): any;
}
export declare const Pan: SFC<Props>;
export default Pan;
