botframework-webchat-component
Version:
React component of botframework-webchat
13 lines • 392 B
TypeScript
import { type ReactNode } from 'react';
type DialogInit = {
'aria-label'?: string;
'aria-labelledby'?: string;
className?: string;
};
type RenderFunction = () => ReactNode;
declare const Context: import("react").Context<Readonly<{
close(): void;
showModal(render: RenderFunction, init?: DialogInit): void;
}>>;
export default Context;
//# sourceMappingURL=Context.d.ts.map