import { type IUserWorkspaceSettings } from "@gooddata/sdk-backend-spi"; import { setAllowedRelationshipTypesAction } from "../store/chatWindow/chatWindowSlice.js"; import { cancelAsyncAction, clearThreadAction, loadThreadAction } from "../store/messages/messagesSlice.js"; export type GenAIChatOwnProps = { autofocus?: boolean; initializing?: boolean; className?: string; }; export type GenAIChatWrapperProps = GenAIChatOwnProps & { loadThread: (...args: Parameters) => void; cancelLoading: (...args: Parameters) => void; clearThread: (...args: Parameters) => void; setAllowedRelationshipTypes: (...args: Parameters) => void; autofocus?: boolean; initializing?: boolean; isClearing?: boolean; settings?: IUserWorkspaceSettings; }; export declare function GenAIChatWrapper(ownProps: GenAIChatOwnProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=GenAIChatWrapper.d.ts.map