import type { JSX } from 'react';
import type { MdHeading } from '../../core/types';
export type TableOfContentProps = {
    headings?: Array<MdHeading | null> | null | undefined;
    contentWrapper: HTMLDivElement | null;
    className?: string;
};
export declare function TableOfContent(props: TableOfContentProps): JSX.Element | null;
