import { drawCircle } from './drawCircle';
import { drawLine, drawLines } from './drawLine';
import { drawPath } from './drawPath';
import { drawPolygon } from './drawPolygon';
import { drawRect } from './drawRect';
declare const DrawUtils: {
    drawCircle: typeof drawCircle;
    drawLine: typeof drawLine;
    drawLines: typeof drawLines;
    drawPath: typeof drawPath;
    drawPolygon: typeof drawPolygon;
    drawRect: typeof drawRect;
};
export default DrawUtils;
