type CustomTag = { name: RegExp; depth: (name: string) => number; }; interface RemarkMdxTocOptions { name?: string; customTags?: CustomTag[]; maxDepth?: number; minDepth?: number; } export type { RemarkMdxTocOptions as R };