UNPKG

283 BTypeScriptView Raw
1import type { FC, ReactNode } from 'react';
2declare type SidebarProps = {
3 indexItems: {
4 index: string;
5 brief: ReactNode;
6 }[];
7 activeIndex: string | null;
8 onActive: (index: string) => void;
9};
10export declare const Sidebar: FC<SidebarProps>;
11export {};