import React from 'react';
import type { GoodsInfo, HideFieldsType } from '../../type';
interface AnchorNavigationProps {
    bounds?: number;
    hideFields?: HideFieldsType[];
    goodsData: Partial<GoodsInfo> | null;
}
declare const AnchorNavigation: React.FC<AnchorNavigationProps>;
export default AnchorNavigation;
