import { default as React } from 'react'; import { ValueOrGetter } from '../../utils/getValue'; export interface NavListItem { id: string; icon?: ValueOrGetter; label: ValueOrGetter; } export interface NavListProps { items: NavListItem[]; activeItemId: string; onActivate?(id: string): void; ref?: React.Ref; } export declare function NavList(props: NavListProps): import("react/jsx-runtime").JSX.Element;