import React, { CSSProperties } from 'react'; import { Store } from './store/async'; import { ComponentProps } from './types'; /** * The interface for the Host's props * @public * */ export interface Props { style?: CSSProperties; /** An array of React components */ components: React.ComponentType[]; } /** * A component that renders an array of components * and provides the global App Bridge store as a prop * @public * */ export declare function Host(props: Props & { store: Store; }): JSX.Element; declare const _default: import("react-redux").ConnectedComponent>; export default _default;