import { FC, HTMLAttributes } from 'react';
export interface ThumbNavProps extends HTMLAttributes<HTMLUListElement> {
    fixedWidth?: boolean;
    isSmall?: boolean;
    isVertical?: boolean;
    noZoomOnHover?: boolean;
    overlayOnHover?: 'black' | 'primary';
    position?: 'top' | 'right' | 'bottom' | 'left';
    rowItems?: 2 | 3 | 4 | 5;
    testId?: string;
}
export declare const ThumbNav: FC<ThumbNavProps>;
