import { PortalsProviderProps } from "./types.cjs"; //#region src/portals/PortalsProvider/PortalsProvider.d.ts /** * Provides portal helpers through dedicated React context. * * Use this component when a subtree needs portals but you do not want to * install them through `GlobalContext`. Hooks still support the installer path, * and provider values take precedence when both are present. * * @param props - Portal options plus children. * @returns Provider-wrapped React subtree. * * @example * ```tsx * * * * ``` */ declare function PortalsProvider(props: PortalsProviderProps): import("react").JSX.Element; //#endregion export { PortalsProvider }; //# sourceMappingURL=PortalsProvider.d.cts.map