SimulationResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): SimulationResponse;
    encode(message: SimulationResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: SimulationResponseAmino): SimulationResponse;
    fromAminoMsg(object: SimulationResponseAminoMsg): SimulationResponse;
    fromPartial(object: {
        gasInfo?: {
            gasUsed?: bigint;
            gasWanted?: bigint;
        };
        result?: {
            data?: Uint8Array;
            events?: {
                attributes?: {
                    index?: (...) | (...) | (...);
                    key?: (...) | (...);
                    value?: (...) | (...);
                }[];
                type?: string;
            }[];
            log?: string;
        };
    }): SimulationResponse;
    fromProtoMsg(message: SimulationResponseProtoMsg): SimulationResponse;
    toAmino(message: SimulationResponse): SimulationResponseAmino;
    toAminoMsg(message: SimulationResponse): SimulationResponseAminoMsg;
    toProto(message: SimulationResponse): Uint8Array;
    toProtoMsg(message: SimulationResponse): SimulationResponseProtoMsg;
}