import * as react_jsx_runtime from 'react/jsx-runtime';
import { StaticImageData, ImageProps } from 'next/image';

declare const ResponsiveImage: ({ src, fallback, metadata, ...props }: {
    src: string;
    fallback?: StaticImageData;
    metadata?: any;
} & Partial<ImageProps>) => Promise<react_jsx_runtime.JSX.Element>;

export { ResponsiveImage, ResponsiveImage as default };
