botframework-webchat-component
Version:
React component of botframework-webchat
10 lines • 477 B
TypeScript
import type { StaticElement, StaticElementEntry } from './types';
type LiveRegionTwinContextType = {
markAllAsRendered: () => void;
queueStaticElement: (element: StaticElement) => void;
staticElementEntriesState: readonly [readonly StaticElementEntry[]];
};
declare const LiveRegionTwinContext: import("react").Context<LiveRegionTwinContextType>;
export default LiveRegionTwinContext;
export type { LiveRegionTwinContextType };
//# sourceMappingURL=Context.d.ts.map