DelegationResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): DelegationResponse;
    encode(message: DelegationResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: DelegationResponseAmino): DelegationResponse;
    fromAminoMsg(object: DelegationResponseAminoMsg): DelegationResponse;
    fromPartial(object: {
        balance?: {
            amount?: string;
            denom?: string;
        };
        delegation?: {
            delegatorAddress?: string;
            shares?: string;
            validatorAddress?: string;
        };
    }): DelegationResponse;
    fromProtoMsg(message: DelegationResponseProtoMsg): DelegationResponse;
    toAmino(message: DelegationResponse): DelegationResponseAmino;
    toAminoMsg(message: DelegationResponse): DelegationResponseAminoMsg;
    toProto(message: DelegationResponse): Uint8Array;
    toProtoMsg(message: DelegationResponse): DelegationResponseProtoMsg;
}