import { default as React } from 'react'; export interface PreviewImageVisualProps { /** * Width of the thumbnail image. */ thumbnailWidth?: number; } /** @inheritdoc */ export interface PreviewImageProps extends PreviewImageVisualProps { /** * Source of the thumbnail image. */ thumbnailSrc: string; /** * Source of the full image. */ src: string; /** * Alt text for the image. */ alt: string; } export declare const PreviewImage: (props: PreviewImageProps & React.RefAttributes) => React.ReactNode;