import { HubListenerProps } from '../RowndContext'; declare global { interface Window { _rphConfig: any; } } export type HubScriptInjectorProps = { appKey: string; stateListener: ({ state, api }: HubListenerProps) => void; hubUrlOverride?: string; locationHash?: string; apiVersion?: string; }; export default function HubScriptInjector({ appKey, hubUrlOverride, stateListener, apiVersion, ...rest }: HubScriptInjectorProps): null;