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