export interface ImageProps {
    classes?: string[];
    src: string;
    alt?: string;
    width?: number;
    height?: number;
    shape?: string;
}
declare const Image: {
    (props: ImageProps): any;
    defaultProps: {
        alt: string;
        shape: string;
    };
};
export default Image;
