import { Rule } from '../../typedef/rule/Rule';
export declare class RuleCodec {
    static decode(o: any): Rule;
    static encode(x: Rule): any;
    static decodeArray(arr: any[]): Rule[];
    static encodeArray(x: Rule[]): any[];
}
