import React from 'react'; import { LinkWrapperProps } from '../links/link-wrapper/link-wrapper'; import { IconProps } from '../icons/create-styled-icon'; export type LabelProps = { styles?: { root: {}; }; text?: string; iconProps?: IconProps; node?: React.ReactNode; }; export type ImageProps = { styles?: { root: {}; }; src?: string; alt?: string; description?: string; linkProps?: LinkWrapperProps; ratio?: string; isCalcRatio?: boolean; fullWidth?: any; imageProps?: any; }; export type OverlayIconProps = { styles?: { root: {}; }; showIcon?: boolean; icon?: React.ReactNode; iconProps?: any; }; export type OverlayTextProps = { styles?: { root: {}; }; text?: string; textPositionY?: string; overlayTextProps?: any; }; export type ArticleImageProps = { children?: React.ReactNode; className?: string; styles?: { root: {}; }; fullWidth?: boolean; imageProps?: ImageProps; bottomLeftLabelProps?: LabelProps; bottomRightLabelProps?: LabelProps; overlayTextProps?: OverlayTextProps; iconProps?: IconProps; isCalcRatio?: boolean; ratio?: string; link?: string; }; declare const ArticleImage: React.FC; export default ArticleImage;