import { default as React } from 'react'; import { IApplication, IKnowledge } from '@glodon-aiot/apis'; import { Session } from '@glodon-aiot/bot-client-sdk'; interface AgentHeaderProps { application?: IApplication; currentSession?: Session | null; setCheckKnowledges?: (knowledges?: IKnowledge[]) => void; } declare const AgentHeader: React.FC; export default AgentHeader;