import { SxProps } from '@mui/material'; import { AvatarProps } from '../Avatar/Avatar'; export interface ArticleImageProps { src?: string; alt?: string; isLoading?: boolean; width?: string | number; height?: string | number; secondarySrc?: AvatarProps["secondarySrc"]; secondaryAvatarProps?: AvatarProps["secondaryAvatarProps"]; secondaryTitle?: string; sx?: SxProps; } declare const ArticleImage: ({ src, isLoading, secondarySrc, secondaryAvatarProps, sx, secondaryTitle, width, height, alt, }: ArticleImageProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default ArticleImage;