import React from 'react';
import './Navbar.css';
export interface NavbarProps {
    user: {
        fullName: string;
        role: string;
    };
    currentTheme: 'light' | 'dark';
    currentLanguage: string;
    onThemeToggle: () => void;
    onLanguageChange: (lang: string) => void;
    onLogout: () => void;
    themeIcon?: React.ReactNode;
    t: (key: string) => string;
}
export declare const Navbar: React.FC<NavbarProps>;
