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