///
import * as pdfMake from 'pdfmake/build/pdfmake';
export declare type Options = pdfMake.Style;
export declare type SVG = Options & {
svg: string;
};
/**
* Builds a SVG object to embed.
*
* @example
*
* // build from an SVG string
* svg(`
*
* `)
*
* // build SVG with options
* svg(svgString, { width: 100 })
*/
export default function svg(data: string, options?: Options): SVG;
//# sourceMappingURL=svg.d.ts.map