import { PropsWithChildren } from 'react'; export interface IPortal { /** * The selector to use for the portal * @default 'scoutbar___root' */ selector?: string; } declare const Portal: React.FC>; export default Portal;