import React from 'react'; import { ImageProps } from 'next/image'; import { Media } from '@dyrected/sdk'; export interface DyrectedImageProps extends Omit { media: Media | string; width?: number; height?: number; } /** * A wrapper around next/image that handles Dyrected Media objects. */ export declare function DyrectedImage({ media, width, height, alt, ...props }: DyrectedImageProps): React.JSX.Element; //# sourceMappingURL=DyrectedImage.d.ts.map