import React from "react"; export interface controls { id?: string; label?: string; icon?: React.ReactNode; handleControl?: any; } export interface menuItems { id?: string | number; label?: string; icon?: React.ReactNode; handleItem?: any; } interface HeaderProps { color?: 'default' | 'inherit' | 'primary' | 'secondary' | 'transparent'; enableColorOnDark?: boolean; position?: 'absolute' | 'fixed' | 'relative' | 'static' | 'sticky'; sx?: any; searchBar?: boolean; controls?: Array; user?: string; menuItems?: Array; logo?: any; avatarImg?: any; handlecallback?: any; navigate?: any; } declare const Header: ({ color, position, enableColorOnDark, sx, searchBar, handlecallback, logo, avatarImg, navigate, ...other }: HeaderProps) => JSX.Element; export default Header;