export type RenderToPngOptions = { width?: number; timeoutMs?: number; }; /** * Renders SVG markup to PNG using headless Chromium. * Expects: svg contains a root element and optional width is a positive integer. */ export declare function renderToPng(svg: string, options?: RenderToPngOptions): Promise; //# sourceMappingURL=renderToPng.d.ts.map