import { WebchatMessage } from '../../index-types';
import { WebchatState } from '../index-types';
interface UseTyping {
    webchatState: WebchatState;
    updateTyping: (typing: boolean) => void;
    updateMessage: (message: WebchatMessage) => void;
    host: any;
}
export declare function useTyping({ webchatState, updateTyping, updateMessage, }: UseTyping): void;
export {};
