import React from 'react'; export interface DropdownNavigationProps { selector: string; buttonId?: string; buttonIcon?: string; headerContent: Exclude any>; options: { id: string; title: string; href: string; icon: string; hasAccess: boolean; hasLabel: boolean; hasBottomLine: boolean; }[]; label?: Exclude any>; trackingKey: string; variant: 'sticky' | 'default'; } export declare const DropdownNavigation: ({ selector, buttonId, buttonIcon, headerContent, options, label, trackingKey, variant }: DropdownNavigationProps) => React.JSX.Element; export declare const ProfessionalLabel: () => React.JSX.Element;