import { Parameter } from "./../index";
export interface ConverterImageInterface {
    maintainAspectRatio?: boolean;
}
export declare class ConverterImage implements ConverterImageInterface, Parameter {
    maintainAspectRatio?: boolean;
    constructor(data: any);
    static getMaintainAspectRatioDefault(): boolean;
    static getMaintainAspectRatioDescription(): string;
    static fromJson(data: any): ConverterImage;
    toJson(): any;
    clone(): ConverterImage;
}
