import { RemoteReceiver } from '@mittwald/flow-remote-core'; import { FC, PropsWithChildren } from 'react'; export interface RemoteRootProps extends PropsWithChildren { onHostPathnameChanged?: (pathname: string) => void; isLoading?: boolean; /** Internal use only */ __remoteReceiver?: RemoteReceiver; } export declare const RemoteRoot: FC; export default RemoteRoot;