/** * Returns the current include() mount path. * * Inside `include("/articles", blogPatterns)`, returns "/articles". * For nested includes, returns the nearest mount path. * At root level (no include), returns "/". * * @example * ```tsx * "use client"; * import { useMount, href } from "@rangojs/router/client"; * * function BlogNav({ slug }: { slug: string }) { * const mount = useMount(); // "/articles" * return ( * <> * Blog Home * Post * * ); * } * ``` */ export declare function useMount(): string; //# sourceMappingURL=use-mount.d.ts.map