import { Rect2 } from '@js-draw/math';
export type SVGSizingOptions = {
    minDimension?: number;
};
declare const adjustExportedSVGSize: (svg: SVGElement, exportRect: Rect2, options: SVGSizingOptions) => void;
export default adjustExportedSVGSize;
