import { CropperInteractions } from "../types/index";
declare function hasInteractions(interactions: CropperInteractions): boolean;
declare function getEmptyInteractions(): {
    moveCoordinates: boolean;
    resizeCoordinates: boolean;
    transformImage: {
        rotate: boolean;
        move: boolean;
        scale: boolean;
        flip: boolean;
    };
};
export { hasInteractions, getEmptyInteractions };
