@assistant-ui/react
Version:
Typescript/React library for AI Chat
13 lines • 585 B
TypeScript
import { FC, PropsWithChildren } from "react";
import { AssistantRuntime } from "../../api/AssistantRuntime";
export declare namespace AssistantRuntimeProvider {
type Props = PropsWithChildren<{
/**
* The runtime to provide to the rest of your app.
*/
runtime: AssistantRuntime;
}>;
}
export declare const AssistantRuntimeProviderImpl: FC<AssistantRuntimeProvider.Props>;
export declare const AssistantRuntimeProvider: import("react").NamedExoticComponent<AssistantRuntimeProvider.Props>;
//# sourceMappingURL=AssistantRuntimeProvider.d.ts.map