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