import { QuaternaryTypes } from '../utils/variant.types'; import { ReactNode } from 'react'; import { ImageInterface } from '../IconBillboard'; export interface ArticleProps { id?: string; image: ImageInterface; itemType: string; title: string | ReactNode; description: string | ReactNode; targetUrl: string; variant?: QuaternaryTypes; useChevron?: boolean | false; } export declare const Article: ({ id, image, itemType, title, description, targetUrl, variant: fullVariant, useChevron, }: ArticleProps) => import("react").JSX.Element;