UNPKG

303 BTypeScriptView Raw
1import type { FC, ReactNode } from 'react';
2import { NativeProps } from '../../utils/native-props';
3export declare type IndexBarPanelProps = {
4 index: string;
5 title?: ReactNode;
6 brief?: ReactNode;
7 children?: ReactNode;
8} & NativeProps;
9export declare const Panel: FC<IndexBarPanelProps>;