import { FlattenSimpleInterpolation } from 'styled-components';
export declare type ImageProps = {
    w?: {
        desktop?: string;
        mobile?: string;
    };
    h?: {
        desktop?: string;
        mobile?: string;
    };
    src: string;
    alt?: string;
    lazy?: boolean;
    mixIn?: FlattenSimpleInterpolation;
    className?: string;
    targetDevice?: string;
    isGrey?: boolean;
};
