/****************************************************************** * Copyright (C) 2020 LvChengbin * * File: Toc/index.tsx * Author: LvChengbin * Time: 06/04/2020 * Description: ******************************************************************/ import React from 'react'; import { SxProps, Theme } from '@mui/material/styles'; export declare type TocProps = { className?: string; sx?: SxProps; toc: { text: React.ReactNode; level: string | number; anchor: string; }[]; }; export default function Toc(props: TocProps): JSX.Element;