export interface ResizableUserInputProps {
    placeholder?: string;
    value?: string;
    loading?: boolean;
    onChange?: (value: string) => void;
    onSend?: (value: string) => void;
}
export declare const ResizableUserInput: ({ value, loading, onChange, onSend, }: ResizableUserInputProps) => import("react/jsx-runtime").JSX.Element;
