/** * SVG to image format conversion utilities */ import { ConversionOptions } from '../types'; /** * Converts an SVG file to PNG format * * @param svgPath - Path to the SVG file * @param options - Conversion options including scale, format, and quality * @returns Promise resolving to a Buffer containing the converted image */ export declare function svgToImage(svgPath: string, options?: ConversionOptions): Promise; /** * Converts an SVG file to PNG format (legacy function name) * * @deprecated Use svgToImage instead */ export declare function svg2Png(svgPath: string, pngPath?: string, scale?: number): Promise;