import React from 'react'; /** * PortalPassthrough can be used to pass information from a parent component to a child component * that is rendered in a different location in the DOM. */ export declare function PortalPassthrough({ children }: { children: React.ReactNode; }): React.JSX.Element;