import { AiCfoViewSelector } from '@zeniai/client-epic-state'; interface UseAiCfoStoryStateProps { initialAiCfoView: AiCfoViewSelector; currentChatSessionId?: string; } export declare const useAiCfoStoryState: ({ initialAiCfoView, currentChatSessionId: initialChatSessionId, }: UseAiCfoStoryStateProps) => { currentInput: string; aiCfoView: AiCfoViewSelector; updateCurrentInput: (input: string) => void; onSubmit: (input: string) => void; onStopSubmit: () => void; createNewSession: (input: string) => void; setScrollPosition: import('react').Dispatch>; setResponseStateByChatSessionId: import('react').Dispatch>; }; export {};