import { CropperPosition, ImageTransform } from './';
export type Position = 'left' | 'topleft' | 'top' | 'topright' | 'right' | 'bottomright' | 'bottom' | 'bottomleft' | 'center';
export interface MoveStart {
    active: boolean;
    type: MoveTypes | null;
    position: Position | null;
    transform?: ImageTransform;
    cropper: CropperPosition;
    clientX: number;
    clientY: number;
}
export declare enum MoveTypes {
    Drag = "drag",
    Move = "move",
    Resize = "resize",
    Pinch = "pinch"
}
