import { ReactNode } from 'react'; import { NavigationRailProps } from '../NavigationRail'; export type NavigationRailShellProps = Omit & { children: ReactNode; drawerWidth?: number | string; initialOpenItemId?: string | null; onItemSelect?: (id: string | null) => void; }; export declare function NavigationRailShell({ ariaLabel, bottomItems, children, drawerWidth, initialOpenItemId, logo, onItemSelect, topItems, width, }: NavigationRailShellProps): import("react/jsx-runtime").JSX.Element;