import { CSSProperties } from "react";
export interface NextImageProps {
    alt?: string;
    onClick?: () => void;
    className?: string;
    forceLoading?: boolean;
    src: string | undefined;
    srcMobile?: string;
    style?: CSSProperties;
}
