type GetProportionalSizeParams = { width: number; height: number; imgMaxHeight: number; }; export declare function getProportionalSize({ width: _width, height: _height, imgMaxHeight, }: GetProportionalSizeParams): { width: number; height: number; }; export {};