import React from 'react'; import { StyleSheet } from '@airbnb/lunar/lib/hooks/useStyles'; import Item from './Item'; export declare type SideBarProps = { /** Accessibility label. */ accessibilityLabel: string; /** Navigation items to render within the bar. */ children: NonNullable; /** Custom style sheet. */ styleSheet?: StyleSheet; }; /** A vertical sidebar navigation menu. Primarily aligned on the left viewport. */ export default function SideBar({ accessibilityLabel, children, styleSheet }: SideBarProps): JSX.Element; export { Item }; //# sourceMappingURL=index.d.ts.map