import { Action, ActionCreator } from "redux";
import { ClientInfo } from "@towercg2/client";
export interface UpdateClientAction extends Action {
    type: "@@RosterPlugin/UPDATE_CLIENTS";
    payload: Array<ClientInfo>;
}
export declare const updateClients: ActionCreator<UpdateClientAction>;
export declare const clearClients: ActionCreator<UpdateClientAction>;
