import { type ReactNode } from 'react'; import Anchor from './Anchor'; import type { AnchorItemData } from './AnchorItem'; type AnchorComponentType = typeof Anchor; /** * Extract text content from ReactNode, excluding Anchor components */ export declare function extractTextContent(node: ReactNode, AnchorComponent: AnchorComponentType): string; /** * Parse children to extract anchor data */ export declare function parseChildren(children: ReactNode, AnchorComponent: AnchorComponentType): AnchorItemData[]; export {};