import React from "react";
import "./index.less";
declare global {
    interface Window {
        tt: any;
    }
}
export declare type InputBarProps = {
    placeholder?: string;
    loading?: boolean;
    onSubmit?: (value: string) => void;
    onTouchStart?: () => void;
    onTouchEnd?: () => void;
    questionToEdit?: string;
    onlineHistory?: any;
};
declare const InputBar: React.FC<InputBarProps>;
export default InputBar;
