import type { HTMLAttributes } from "svelte/elements";
export interface TableOfContentsItem {
id: string;
label: string;
level?: number;
}
type TableOfContentsProps = Omit, "class" | "items"> & {
title?: string;
items: TableOfContentsItem[];
activeId?: string;
class?: string;
};
declare const TableOfContents: import("svelte").Component;
type TableOfContents = ReturnType;
export default TableOfContents;
//# sourceMappingURL=TableOfContents.svelte.d.ts.map