import React from "react"; import { ITask } from "../../models"; export interface CopilotProps { copilotEnabledQueues?: string[] | null; task?: ITask; } /** * @component * @category Components / Basic * @description Renders Copilot Knowledge Base Search Panel * @private * @since 2.9.0 */ export declare const CopilotComponent: (props: CopilotProps) => JSX.Element; export declare const Copilot: { new (props: Omit, keyof import("../context").TaskContextProps> | Readonly, keyof import("../context").TaskContextProps>>): { render(): JSX.Element; context: any; setState(state: {} | ((prevState: Readonly<{}>, props: Readonly, keyof import("../context").TaskContextProps>>) => {} | Pick<{}, K>) | Pick<{}, K>, callback?: () => void): void; forceUpdate(callback?: () => void): void; readonly props: Readonly, keyof import("../context").TaskContextProps>> & Readonly<{ children?: React.ReactNode | undefined; }>; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; componentDidMount?(): void; shouldComponentUpdate?(nextProps: Readonly, keyof import("../context").TaskContextProps>>, nextState: Readonly<{}>, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly, keyof import("../context").TaskContextProps>>, prevState: Readonly<{}>): any; componentDidUpdate?(prevProps: Readonly, keyof import("../context").TaskContextProps>>, prevState: Readonly<{}>, snapshot?: any): void; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly, keyof import("../context").TaskContextProps>>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly, keyof import("../context").TaskContextProps>>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly, keyof import("../context").TaskContextProps>>, nextState: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly, keyof import("../context").TaskContextProps>>, nextState: Readonly<{}>, nextContext: any): void; }; new (props: Omit, keyof import("../context").TaskContextProps>, context: any): { render(): JSX.Element; context: any; setState(state: {} | ((prevState: Readonly<{}>, props: Readonly, keyof import("../context").TaskContextProps>>) => {} | Pick<{}, K>) | Pick<{}, K>, callback?: () => void): void; forceUpdate(callback?: () => void): void; readonly props: Readonly, keyof import("../context").TaskContextProps>> & Readonly<{ children?: React.ReactNode | undefined; }>; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; componentDidMount?(): void; shouldComponentUpdate?(nextProps: Readonly, keyof import("../context").TaskContextProps>>, nextState: Readonly<{}>, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly, keyof import("../context").TaskContextProps>>, prevState: Readonly<{}>): any; componentDidUpdate?(prevProps: Readonly, keyof import("../context").TaskContextProps>>, prevState: Readonly<{}>, snapshot?: any): void; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly, keyof import("../context").TaskContextProps>>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly, keyof import("../context").TaskContextProps>>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly, keyof import("../context").TaskContextProps>>, nextState: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly, keyof import("../context").TaskContextProps>>, nextState: Readonly<{}>, nextContext: any): void; }; readonly displayName: string; contextType?: React.Context | undefined; } & import("hoist-non-react-statics").NonReactStatics JSX.Element, import("react-redux").Omit>, {}>;