import React from 'react'; export interface IChatInputProps { onSend: (value: string, images?: string[], agentId?: string, command?: string) => void; onValueChange?: (value: string) => void; onExpand?: (value: boolean) => void; placeholder?: string; enableOptions?: boolean; disabled?: boolean; sendBtnClassName?: string; defaultHeight?: number; value?: string; autoFocus?: boolean; theme?: string | null; setTheme: (theme: string | null) => void; agentId: string; setAgentId: (id: string) => void; defaultAgentId?: string; command: string; setCommand: (command: string) => void; } export declare const ChatInput: React.ForwardRefExoticComponent>; //# sourceMappingURL=ChatInput.d.ts.map