import React from "react";
export interface ImageProps {
    src?: string;
    fit?: "none" | "cover" | "contain" | "scale-down" | "fill";
    alt?: string;
    width?: number | string;
    height?: number | string;
    className?: string;
    style?: React.CSSProperties;
}
export declare function Image({ src, alt, fit, className, ...props }: ImageProps): JSX.Element;
