import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; /** Provide classes to set the inactive anchor styles.*/ inactive?: string | undefined; /** Provide classes to set the active anchor styles.*/ active?: string | undefined; /** Set the active permalink ID on load.*/ activeId?: string | undefined; /** Set indentation per each queried element.*/ indentStyles?: Record | undefined; /** Provide arbitrary classes to the lead regions, used for titles.*/ regionLead?: string | undefined; /** Provide arbitrary classes to style the list element.*/ regionList?: string | undefined; /** Provide arbitrary classes to style the list item elements.*/ regionListItem?: string | undefined; /** Provide arbitrary classes to style the anchor elements.*/ regionAnchor?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type TableOfContentsProps = typeof __propDef.props; export type TableOfContentsEvents = typeof __propDef.events; export type TableOfContentsSlots = typeof __propDef.slots; export default class TableOfContents extends SvelteComponentTyped { } export {};