/// <reference types="react" />
import { Node } from "../../types";
declare type Props = {
    node: Node;
};
/**
 * Used to create a single entry for the table of contents for the function documentation.
 *
 * @author Juhana Kuparinen <juhana.kuparinen@kvanttori.fi>
 */
declare const TableOfContentSection: ({ node }: Props) => JSX.Element;
export default TableOfContentSection;
