import { type Item } from '../dropdown/Dropdown.component'; import { type Props as ButtonProps } from '../buttonv2/Buttonv2.component'; type ButtonAction = { type: 'button'; } & ButtonProps; type DropdownAction = { type: 'dropdown'; items: Array; text?: string; icon?: JSX.Element; }; type CustomAction = { type: 'custom'; render: React.ComponentType; }; type Action = DropdownAction | ButtonAction | CustomAction; type Actions = Array; type Tab = { title?: string; selected?: boolean; onClick?: (arg0: any) => void; link?: JSX.Element; render?: JSX.Element; }; export type Props = { onToggleClick?: () => void; rightActions: Actions; logo?: JSX.Element; tabs?: Array; }; declare function NavBar({ onToggleClick, logo, tabs, rightActions, ...rest }: Props): import("react/jsx-runtime").JSX.Element; export declare const Navbar: typeof NavBar; export {}; //# sourceMappingURL=Navbar.component.d.ts.map