import { ReactNode } from 'react'; import { NavigationItem } from '../navigation.types'; export type NavigationRailProps = { activeItemId?: string | null; ariaLabel?: string; bottomItems?: NavigationItem[]; logo?: ReactNode; onItemSelect?: (id: string) => void; topItems: NavigationItem[]; width?: number | string; }; export declare function NavigationRail({ activeItemId, ariaLabel, bottomItems, logo, onItemSelect, topItems, width, }: NavigationRailProps): import("react/jsx-runtime").JSX.Element;