import { ComponentChild } from 'preact'; import type { SharedProps } from '@bonniernews/dn-design-system-web/assets/types/shared-props.ts'; export interface ArticleImageProps extends SharedProps { image: ComponentChild; caption?: string; author?: string; imageType?: string; fullWidth?: boolean; forcePx?: boolean; } export declare const ArticleImage: ({ image, caption, author, imageType, fullWidth, forcePx, classNames, attributes, }: ArticleImageProps) => import("preact").JSX.Element;