import { Point } from '../common/types';
export interface ExportOptions {
    embedImages: boolean;
}
export declare function translateFromDomToSvgCoordinates(svg: SVGSVGElement, viewport: SVGGElement, coordinates: Point): Point;
export declare function translateFromSvgToDomCoordinates(svg: SVGSVGElement, viewport: SVGGElement, coordinates: Point): Point;
export declare function exportSvgElement(element: SVGElement, svgViewport: SVGGElement, scale: number): SVGElement;
export declare function exportSvgElementWithOptions(element: SVGElement, svgViewport: SVGGElement, scale: number, options?: Partial<ExportOptions>): Promise<SVGElement>;
