import type { Preset } from '.'; /** * Generate a table of contents from the current markdown file, based on markdown headers (e.g. `### My section title`) * * ##### Example * * `` * * @param minDepth exclude headers with lower "depth". e.g. if set to 2, `# H1` would be excluded but `## H2` would be included. @default 2 * @param maxDepth exclude headers with higher "depth". e.g. if set to 3, `#### H4` would be excluded but `### H3` would be included. @default Infinity */ export declare const markdownTOC: Preset<{ minDepth?: number; maxDepth?: number; }>;