import { LiskSendTxCodec } from './0_send';
import { LiskSecondSignTxCodec } from './1_secondsignature';
import { LiskRegDelegateTxCodec } from './2_regdelegate';
import { LiskVoteTxCodec } from './3_vote';
import { BaseLiskCodec } from './base_lisk';
export declare const liskCodecUtils: {
    allCodecs: (LiskSendTxCodec | LiskSecondSignTxCodec | LiskRegDelegateTxCodec | LiskVoteTxCodec)[];
    findCodecFromType<T = any>(type: number): BaseLiskCodec<T>;
    findCodecFromIdentifier<T = any>(identifier: string): BaseLiskCodec<T>;
};
