import { ReactNode } from "react"; //#region src/auto-anchor/client.d.ts /** Append segment to anchor IDs */ export declare function AnchorSection({ segments, children }: { segments: string[]; children: ReactNode; }): import("react").JSX.Element; export declare function useAnchorId(segments: false): null; export declare function useAnchorId(segments: string[]): string; export declare function useAnchorId(segments: string[] | false): string | null; //#endregion