import { default as React } from 'react';
interface ImageComponentProps {
    src?: string;
    alt?: string;
    width?: number | string;
    height?: number | string;
    style?: React.CSSProperties;
    className?: string;
    onClick?: () => void;
}
export declare const ImageComponent: React.FC<ImageComponentProps>;
export {};
