import type { CommandLineOptions } from 'command-line-args'; interface SvgToReactOptions extends CommandLineOptions { out?: string; src?: string; template?: 'jsdoc-typescript' | 'legacy' | 'typescript-pre19' | 'typescript'; } /** * Convert SVG to React.js. * * @param options The command line options. */ export declare const convertSvgToReact: (options: SvgToReactOptions) => Promise; export {};