import BaseMapper from './base';
import { Component, ImageProps } from '../types';
export declare enum ImageTargetsEnum {
    option1 = "Both",
    option2 = "Desktop",
    option3 = "Mobile"
}
export declare type ImageTargets = 'Both' | 'Desktop' | 'Mobile';
declare class ModuleImage extends BaseMapper {
    generateComponent(): Promise<Component<ImageProps>>;
    private getProps;
}
export default ModuleImage;
