import React, { ImgHTMLAttributes } from 'react';
import { SpaceProps, LayoutProps, BorderProps } from 'styled-system';
import { Theme } from '@evlop/commons';
import { CommonProps } from '../types';
export interface ImageProps extends Omit, 'src' | 'srcSet' | 'sizes' | 'aspectRatio' | 'objectFit' | 'height' | 'width'>, Omit, 'minHeight'>, Omit, 'minHeight' | 'height' | 'width'>, BorderProps, Omit {
src: string;
loadWidth?: number | string | number[];
objectFit?: 'contain' | 'cover' | 'fill' | 'none' | 'scale-down';
aspectRatio?: string | number;
[key: string]: any;
}
export declare const Image: React.FC;
export default Image;
//# sourceMappingURL=Image.d.ts.map