import { PointerPoint } from "./pointer";
export declare type GestureType = "pinch" | "stretch";
export interface GestureOpts {
    start?: PointerPoint;
    duration?: number;
    amount?: PointerPoint;
}
