/// export interface TopbarProps { options: { label: string; value: string; subOptions?: { label: string; value: string; }[]; }[]; isLoggedIn?: boolean; handleAction: (type: string) => void; handleClick: (value: string) => void; selected?: string; showBackgroundColor?: boolean; onClick?: () => void; } declare const Topbar: ({ options, isLoggedIn, handleAction, handleClick, selected, showBackgroundColor, onClick, }: TopbarProps) => JSX.Element; export default Topbar;