import React from 'react'; /** * This component is meant to be used with the Dovetail Product Switcher. * It provides a bridge between the product switcher and the single tab * stop navigation provided in the NavigationBar. * * When using this component, be sure to pass `singleTabStop: true` to the * render method of the Dovetail Product Switcher. * * Here is an example of how you could connect the Dovetail component to * the ref used by ProductSwitcherBridge: * * ```tsx * React.useEffect(() => { * const switcher = lib.components.ProductSwitcher({ * element: ref.current, * }) * switcher.render({ * platformaAuthTokenClosure, * singleTabStop: true, * }) * return () => { * switcher.unmount() * } * }, []) * ``` */ export declare const ProductSwitcherBridge: React.ForwardRefExoticComponent>; //# sourceMappingURL=product-switcher-bridge.d.ts.map