import { IBaseTxCodec } from '../base';
import { BaseRiseV2Codec } from './v2';
export declare const riseCodecUtils: {
    allCodecs: Array<IBaseTxCodec<any, any>>;
    findCodecFromType<T = any>(type: number): BaseRiseV2Codec<T>;
    findCodecFromIdentifier<T = any>(identifier: string): BaseRiseV2Codec<T>;
};
