import { TocItemType } from "./type";
export declare const mapItems: (items: TocItemType[]) => {
    children: {
        href: string;
        key: string;
        title: string;
    }[] | undefined;
    href: string;
    key: string;
    title: string;
}[];
