//#region src/portals/usePortalAnchors/usePortalAnchors.d.ts /** * Reads the portal anchor ids installed by {@link installPortals}. * * @typeParam T - Expected anchor id shape. * * @returns The current portal anchor ids cast to `T`. * * @example * ```tsx * const anchors = usePortalAnchors<{ modal: string }>(); * * return
; * ``` */ declare function usePortalAnchors(): T; //#endregion export { usePortalAnchors }; //# sourceMappingURL=usePortalAnchors.d.ts.map