import React from 'react'; import { LinkWrapperProps } from '../../../links/link-wrapper/link-wrapper'; import { BaseStyles } from '../../../../utils/types/base-styles.type'; export type ImageProps = { styles?: BaseStyles; src?: string; alt?: string; description?: string; linkProps?: LinkWrapperProps; ratio?: string; isCalcRatio?: boolean; fullWidth?: any; imageProps?: any; }; declare const Image: React.FC; export default Image;