import { RawAspectRatio, Size, SizeRestrictions } from "../../types/index";
import { BoundingBox, RotatedImage } from "./types";
declare function approximateSizeInsideImage(params: {
    image: RotatedImage;
    width: number;
    height: number;
    sizeRestrictions: SizeRestrictions;
    aspectRatio?: RawAspectRatio;
    boundingBox?: BoundingBox;
}): Size;
export { approximateSizeInsideImage };
