import { FC, HTMLAttributes } from 'react'; export interface ThumbNavItemProps extends HTMLAttributes { active?: boolean; targetUrl?: string; imageUrl: string; actionDescription?: string; testId?: string; } export declare const ThumbNavItem: FC;