/**
 * TableofContents module.
 * @module @massds/mayflower-react/TableofContents
 * @requires module:@massds/mayflower-assets/scss/03-organisms/table-of-contents-hierarchy
 */
import React from 'react';
export interface TableofContentsProps {
    /** The heading text  */
    heading?: React.ReactElement;
    children?: React.ReactNode;
}
declare const TableofContents: (props: TableofContentsProps) => any;
export default TableofContents;
