import { ConvertableFile, FileConverter } from '@rytass/file-converter';
import { ImageResizerOptions } from './typings';
export declare class ImageResizer implements FileConverter<ImageResizerOptions> {
    private readonly options;
    constructor(options?: ImageResizerOptions);
    convert<Output extends ConvertableFile>(file: ConvertableFile): Promise<Output>;
}
