import { default as React, Dispatch, SetStateAction } from 'react'; import { IAecSessionPrompt as ISessionPrompt } from '@glodon-aiot/apis'; import { Session } from '@glodon-aiot/bot-client-sdk'; interface PromptSettingProps { appId: string; currentSession?: Session | null; setPromptVariables: Dispatch>; promptVariables: ISessionPrompt[]; setCurrentSession?: Dispatch>; } export interface PromptSettingtRef { clear: () => void; } declare const PromptSetting: React.ForwardRefExoticComponent>; export default PromptSetting;