import React, { ReactNode } from 'react'; import { ThemeOverrideProps } from '@xsolla/xui-core'; interface NavBarProps { /** * Size variant of the NavBar * @default 'm' */ size?: "sm" | "md" | "lg"; /** * Whether to show a bottom border * @default false */ bordered?: boolean; /** * Custom background color */ backgroundColor?: string; /** * Content of the NavBar, typically StartSlot, Center, and EndSlot */ children?: ReactNode; testID?: string; } interface NavBarSlotProps { /** * Slot content */ children?: ReactNode; testID?: string; } declare const NavBarRoot: React.FC; declare const NavBar: React.FC & { StartSlot: React.FC; Center: React.FC; EndSlot: React.FC; }; export { NavBar, type NavBarProps, NavBarRoot, type NavBarSlotProps };