28 lines
919 B
TypeScript
28 lines
919 B
TypeScript
import { CopilotChatProps } from "./CopilotChat.cjs";
|
|
import { CopilotPopupViewProps } from "./CopilotPopupView.cjs";
|
|
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
|
|
//#region src/components/chat/CopilotPopup.d.ts
|
|
type CopilotPopupProps = Omit<CopilotChatProps, "chatView"> & {
|
|
header?: CopilotPopupViewProps["header"];
|
|
toggleButton?: CopilotPopupViewProps["toggleButton"];
|
|
defaultOpen?: boolean;
|
|
width?: CopilotPopupViewProps["width"];
|
|
height?: CopilotPopupViewProps["height"];
|
|
clickOutsideToClose?: CopilotPopupViewProps["clickOutsideToClose"];
|
|
};
|
|
declare function CopilotPopup({
|
|
header,
|
|
toggleButton,
|
|
defaultOpen,
|
|
width,
|
|
height,
|
|
clickOutsideToClose,
|
|
...chatProps
|
|
}: CopilotPopupProps): react_jsx_runtime0.JSX.Element;
|
|
declare namespace CopilotPopup {
|
|
var displayName: string;
|
|
}
|
|
//#endregion
|
|
export { CopilotPopup, CopilotPopupProps };
|
|
//# sourceMappingURL=CopilotPopup.d.cts.map
|