import React from 'react'; export declare type AnchorContainer = HTMLElement | Window; export declare const AnchorTypes: ["bookmarks", "menu", "advanced"]; export declare type AnchorType = typeof AnchorTypes[number]; export interface AnchorProps { prefixCls?: string; className?: string; style?: React.CSSProperties; children?: React.ReactNode; type?: AnchorType; offsetTop?: number; bounds?: number; affix?: boolean; lockedIcon?: boolean | React.ReactNode; icon?: React.ReactNode; dropdownStyle?: React.CSSProperties; visible?: boolean; getContainer?: () => AnchorContainer; getCurrentAnchor?: () => string; onClick?: (e: React.MouseEvent, link: { title: React.ReactNode; href: string; }) => void; onChange?: (currentActiveLink: string) => void; } declare const Anchor: React.ForwardRefExoticComponent>; export default Anchor;