import React from 'react'; export interface LinkProps { /** Title of link. */ title: string; /** Url of link */ href?: string; /** Subtitle of link. */ subtitle: string; /** Link description. */ description?: string; /** URL of the placeholder image or an image component. */ image?: string | React.ReactNode; } declare const Link: ({ image, title, subtitle, description, href }: LinkProps) => JSX.Element; export default Link;