import { Config } from '../schema'; import { SvgConverter, ImageSource } from '../convert'; export default imageToSvg; export { SvgConverter, imageToJson, imageToSvg }; export type { Config } from '../schema'; declare function imageToSvg(image: ImageSource, config?: Config): Promise; declare function imageToJson( image: ImageSource, config?: Config ): Promise;