interface RotatedImage {
    width: number;
    height: number;
    angle: number;
}
type BoundingBox = BoundingBoxType;
declare enum BoundingBoxType {
    Circle = "circle",
    Rectangle = "rectangle"
}
interface FitToImageSettings {
    stencilBoundingBox?: BoundingBox;
}
export { RotatedImage, BoundingBox, BoundingBoxType, FitToImageSettings };
