interface MenuItemProps {
    name: string;
    link: string;
    drop?: DropItemProps[];
}
interface DropItemProps {
    name: string;
    link: string;
}
export interface TopNavbarProps {
    headerLogo?: any;
    headerIconLink?: string;
    headerLink?: string;
    headerText?: string;
    iconPosition?: string;
    iconSize?: number;
    menuItems?: MenuItemProps[];
    textColor?: string;
    hoverTextColor?: string;
    fontSize?: number;
    fontWeight?: number;
    fontFamily?: string;
    borderRadius?: number;
    hoverUnderline?: boolean;
    backgroundColor?: string;
    borderColor?: string;
    borderThickness?: string;
    openLinkInNewTab?: boolean;
    headerFunction?: () => void;
    clickFunction?: () => void;
}
declare const WOITopNavbar: (props: TopNavbarProps) => import("react/jsx-runtime").JSX.Element;
export default WOITopNavbar;
