@assistant-ui/react
Version:
React components for AI chat.
13 lines • 625 B
TypeScript
import { type FC, type PropsWithChildren } from "react";
import { ThreadListItemRuntime } from "../../api/ThreadListItemRuntime";
export declare namespace ThreadListItemRuntimeProvider {
type Props = PropsWithChildren<{
runtime: ThreadListItemRuntime;
}>;
}
export declare const useThreadListItemStore: (runtime: ThreadListItemRuntime) => import("zustand").UseBoundStore<import("zustand").StoreApi<Readonly<{
threadId: string;
title?: string;
}>>>;
export declare const ThreadListItemRuntimeProvider: FC<ThreadListItemRuntimeProvider.Props>;
//# sourceMappingURL=ThreadListItemRuntimeProvider.d.ts.map