export interface ImageResizerOptions {
    maxWidth?: number;
    maxHeight?: number;
    keepAspectRatio?: boolean;
    concurrency?: number;
}
