import { ActionTemplate } from '../../typedef/template/ActionTemplate';
export declare class ActionTemplateCodec {
    static decodeArray(array: any[]): ActionTemplate[];
    static decode(o: any): ActionTemplate;
    static encode(template: ActionTemplate): any;
    static encodeArray(actions: Map<number, ActionTemplate>): any[];
}
