import { CSSProperties } from "preact/compat";
import { PanEvent } from "../hooks/usePan";
type Props = {
    style?: CSSProperties;
    onPanStart?: (e: PanEvent) => void;
    onPanEnd?: (e: PanEvent) => void;
    onPan?: (e: PanEvent) => void;
};
declare const PanDiv: ({ style, onPanStart, onPanEnd, onPan }: Props) => import("preact/compat").JSX.Element;
export default PanDiv;
