import { Action } from '../../typedef/instance/Action'; export declare class ActionCodec { static decodeArray(array: any[]): Action[]; static decode(o: any): Action; static encode(action: Action): any; static encodeArray(actions: Map): any[]; }