/**
 * @jrmc/adonis-attachment
 *
 * @license MIT
 * @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
 */
import type { BinPaths } from '../types/config.js';
import type { Converter as ConverterInterface, ConverterOptions } from '../types/converter.js';
export default class Converter implements ConverterInterface {
    options?: ConverterOptions;
    binPaths?: BinPaths;
    constructor(options?: ConverterOptions, binPaths?: BinPaths);
}
//# sourceMappingURL=converter.d.ts.map