@venuecms/sdk-next
Version:
This is a work in progress and is heavily in flux until we launch 1.0 in February.
11 lines (8 loc) • 382 B
TypeScript
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 };