/**
 *
 */
export declare class MsgConverter {
    static convertFromAminoToDirect(aminoType: string, msg: any): {
        typeUrl: string;
        value: any;
    } | null;
    static convertFromDirectToAmino(typeUrl: string, msg: any): Record<string, any> | null;
}
