import type { ImageVariantSize, SourceImageRef } from "./engine-types.js";
export interface ComputeVariantSizeParams {
    sourceImage: Pick<SourceImageRef, "rawWidth" | "rawHeight" | "avgRawWidth" | "avgRawHeight">;
    rawResizeR: string;
    autoCrop?: boolean;
}
export declare function computeImageVariantSize({ sourceImage, rawResizeR, autoCrop, }: ComputeVariantSizeParams): ImageVariantSize;
//# sourceMappingURL=compute-variant-size.d.ts.map