import { VFC, ReactNode, MouseEvent, CSSProperties } from 'react'; import { IAffixProps } from '../affix'; export interface IElevatorLinkItem { link: string; title: ReactNode; } export declare type IElevatorLinksProps = Omit & { links: IElevatorLinkItem[]; className?: string; style?: CSSProperties; onClick?: (event: MouseEvent, link: string) => void; }; export declare const ElevatorLinks: VFC;