import type { CSSProperties } from 'react';
export interface ChatInputProps {
    onSend: (content: string, file?: string) => void;
    disabled?: boolean;
    placeholder?: string;
    allowAttachments?: boolean;
    style?: CSSProperties;
}
export declare function ChatInput({ onSend, disabled, placeholder, allowAttachments, style, }: ChatInputProps): import("react/jsx-runtime").JSX.Element;
