type SVGit4MeOptions = { color?: boolean; color_mode?: 'color' | 'bw'; wasmPath?: string; [key: string]: any; }; /** * Convert PNG/JPG to SVG using VTracer (color) or Potrace (B/W) * @param image File, Blob, or ArrayBuffer * @param options SVGit4MeOptions (use 'wasmPath' to customize WASM location for VTracer) * @returns SVG string */ declare function convertToSVG(image: File | Blob | ArrayBuffer, options?: SVGit4MeOptions): Promise; export { type SVGit4MeOptions, convertToSVG };