import { ServiceCollection } from '@aesop-fables/containr'; import React from 'react'; import { DataStore } from '..'; export interface InteractionContextProps { dataStore?: DataStore; children: JSX.Element; configureServices?: (services: ServiceCollection) => void; } export declare const InteractionContext: React.FC;