import { FC } from "react";
export interface IImageProps {
    className?: string;
    src?: string;
}
export declare const Image: FC<IImageProps>;
