import React from 'react'; import { AnchorNavigationProps } from '../interfaces'; interface AnchorItemProps { anchor: AnchorNavigationProps.Anchor; onFollow: (anchor: AnchorNavigationProps.Anchor, event: React.SyntheticEvent | Event) => void; isActive: boolean; index: number; children: React.ReactNode; } export declare const AnchorItem: ({ anchor, onFollow, isActive, index, children }: AnchorItemProps) => JSX.Element; export {};