import React from 'react'; export interface AnchorNavElement { id: string; label: string; element: React.ReactNode; } export interface AnchorNavProps { elements: AnchorNavElement[]; } export declare const AnchorNav: React.FC; //# sourceMappingURL=AnchorNav.d.ts.map