export type ChatComposerContextValue = { value: string; onChange: (value: string) => void; onSubmit: (value: string) => void; placeholder: string; isDisabled: boolean; isStopShown: boolean; canSend: boolean; onStop?: () => void; }; export declare const ChatComposerContext: import("react").Context; export declare const useChatComposerContext: () => ChatComposerContextValue | null;