WasmContractReferences: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): WasmContractReferences;
    encode(message: WasmContractReferences, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: WasmContractReferencesAmino): WasmContractReferences;
    fromAminoMsg(object: WasmContractReferencesAminoMsg): WasmContractReferences;
    fromPartial(object: {
        contractReferences?: {
            contractAddress?: string;
            jsonTranslationTemplate?: string;
            messageName?: string;
            messageType?: WasmMessageSubtype;
        }[];
        messageName?: string;
    }): WasmContractReferences;
    fromProtoMsg(message: WasmContractReferencesProtoMsg): WasmContractReferences;
    toAmino(message: WasmContractReferences): WasmContractReferencesAmino;
    toAminoMsg(message: WasmContractReferences): WasmContractReferencesAminoMsg;
    toProto(message: WasmContractReferences): Uint8Array;
    toProtoMsg(message: WasmContractReferences): WasmContractReferencesProtoMsg;
}