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