/**
 * @jrmc/adonis-attachment
 *
 * @license MIT
 * @copyright Jeremy Chaufourier <jeremy@chaufourier.fr>
 */
import type { ConverterAttributes } from '../types/converter.js';
import type { Input } from '../types/input.js';
import Converter from './converter.js';
export default class ImageConverter extends Converter {
    handle({ input, options }: ConverterAttributes): Promise<Input>;
}
//# sourceMappingURL=image_converter.d.ts.map