interface ChatInputLabels { placeholder: string; send: string; } interface ChatInputProps { onSend: (message: string) => void; isLoading?: boolean; labels?: ChatInputLabels; } export declare function ChatInput({ onSend, isLoading, labels: labelsProp }: ChatInputProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ChatInput.d.ts.map