import { WebchatAction } from './actions';
import { WebchatState } from './index-types';
export declare function webchatReducer(state: WebchatState, action: {
    type: WebchatAction;
    payload?: any;
}): WebchatState;
